Trait lasso::IntoResolver

source ·
pub trait IntoResolver<K = Spur>: Reader<K>where
    K: Key,
{ type Resolver: Resolver<K>; fn into_resolver(self) -> Self::Resolver
    where
        Self: 'static
; }
Expand description

A generic interface over Readers that can be turned into a Resolver.

Required Associated Types§

The type of Resolver the reader will be converted into

Required Methods§

Consumes the current Reader and makes it into a Resolver, allowing contention-free access from multiple threads with the lowest possible memory consumption

Implementations on Foreign Types§

Implementors§