[][src]Trait mapped_guard::BoxedMapped

pub trait BoxedMapped { }

Marker types for guards that are mapped by first being boxed (because they make no guarantees that their target reference can be detached from their location in memory.) Technically this could be anything, but the operation only really makes sense for guards, in order to return the mapping from a function.

Implementations on Foreign Types

impl<'a, T> BoxedMapped for MutexGuard<'a, T>[src]

impl<'a, T> BoxedMapped for RwLockReadGuard<'a, T>[src]

impl<'a, T> BoxedMapped for RwLockWriteGuard<'a, T>[src]

impl<'a, T> BoxedMapped for Ref<'a, T>[src]

Loading content...

Implementors

impl<G, R> BoxedMapped for MappedGuard<G, R>[src]

Loading content...