Struct lightning::map::ObjectMapWriteGuard[][src]

pub struct ObjectMapWriteGuard<'a, V: Clone, ALLOC: GlobalAlloc + Default = System, H: Hasher + Default = DefaultHasher> { /* fields omitted */ }

Implementations

impl<'a, V: Clone, ALLOC: GlobalAlloc + Default, H: Hasher + Default> ObjectMapWriteGuard<'a, V, ALLOC, H>[src]

pub fn remove(self) -> V[src]

Trait Implementations

impl<'a, V: Clone, ALLOC: GlobalAlloc + Default, H: Hasher + Default> Deref for ObjectMapWriteGuard<'a, V, ALLOC, H>[src]

type Target = V

The resulting type after dereferencing.

impl<'a, V: Clone, ALLOC: GlobalAlloc + Default, H: Hasher + Default> DerefMut for ObjectMapWriteGuard<'a, V, ALLOC, H>[src]

impl<'a, V: Clone, ALLOC: GlobalAlloc + Default, H: Hasher + Default> Drop for ObjectMapWriteGuard<'a, V, ALLOC, H>[src]

Auto Trait Implementations

impl<'a, V, ALLOC, H> RefUnwindSafe for ObjectMapWriteGuard<'a, V, ALLOC, H> where
    ALLOC: RefUnwindSafe,
    H: RefUnwindSafe,
    V: RefUnwindSafe

impl<'a, V, ALLOC, H> Send for ObjectMapWriteGuard<'a, V, ALLOC, H> where
    H: Send + Sync,
    V: Send

impl<'a, V, ALLOC, H> Sync for ObjectMapWriteGuard<'a, V, ALLOC, H> where
    H: Sync,
    V: Sync

impl<'a, V, ALLOC, H> Unpin for ObjectMapWriteGuard<'a, V, ALLOC, H> where
    H: Unpin,
    V: Unpin

impl<'a, V, ALLOC, H> UnwindSafe for ObjectMapWriteGuard<'a, V, ALLOC, H> where
    ALLOC: RefUnwindSafe,
    H: RefUnwindSafe + UnwindSafe,
    V: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.