update default generic type for ssl filters

This commit is contained in:
Nikolay Kim 2021-12-21 21:20:23 +06:00
parent 52d6c6580e
commit 0b98468c1a
3 changed files with 5 additions and 5 deletions

View file

@ -48,7 +48,7 @@ impl<T: any::Any> QueryItem<T> {
self.item.as_ref().and_then(|v| v.downcast_ref().copied())
}
pub fn get_ref(&self) -> Option<&T> {
pub fn as_ref(&self) -> Option<&T> {
if let Some(ref item) = self.item {
item.downcast_ref()
} else {