pub trait IntoResolver<K = Spur>: Reader<K>where
K: Key,{
type Resolver: Resolver<K>;
// Required method
fn into_resolver(self) -> Self::Resolver
where Self: 'static;
}Required Associated Types§
Required Methods§
Sourcefn into_resolver(self) -> Self::Resolverwhere
Self: 'static,
fn into_resolver(self) -> Self::Resolverwhere
Self: 'static,
Implementations on Foreign Types§
Source§impl<K, I> IntoResolver<K> for Box<I>
impl<K, I> IntoResolver<K> for Box<I>
type Resolver = <I as IntoResolver<K>>::Resolver
fn into_resolver(self) -> Self::Resolverwhere
Self: 'static,
Implementors§
Source§impl<K, S> IntoResolver<K> for Rodeo<K, S>where
K: Key,
S: BuildHasher,
impl<K, S> IntoResolver<K> for Rodeo<K, S>where
K: Key,
S: BuildHasher,
type Resolver = RodeoResolver<K>
Source§impl<K, S> IntoResolver<K> for RodeoReader<K, S>where
K: Key,
S: BuildHasher,
impl<K, S> IntoResolver<K> for RodeoReader<K, S>where
K: Key,
S: BuildHasher,
type Resolver = RodeoResolver<K>
Source§impl<K, S> IntoResolver<K> for ThreadedRodeo<K, S>
Available on crate feature multi-threaded only.
impl<K, S> IntoResolver<K> for ThreadedRodeo<K, S>
Available on crate feature
multi-threaded only.