pub trait MapImmutable<'a, R: RawMutex, T: ?Sized> {
    fn map_immutable<U: ?Sized, F>(
        s: Self,
        f: F
    ) -> ImmutableMappedMutexGuard<'a, R, U>
    where
        F: FnOnce(&T) -> &U
; }

Required Methods§

Implementations on Foreign Types§

Implementors§