Struct push_while_ref::HashMapOwner[][src]

pub struct HashMapOwner<K, T>(_);

Implementations

impl<K, T> HashMapOwner<K, T> where
    K: Hash + Eq + Clone,
    T: StaticType
[src]

pub fn new() -> Self[src]

pub fn child(&mut self) -> HashMapChild<'_, K, T>[src]

Creates a HashMapChild which will allow to interact with the HashMap.

Trait Implementations

impl<K: Debug, T: Debug> Debug for HashMapOwner<K, T>[src]

Auto Trait Implementations

impl<K, T> RefUnwindSafe for HashMapOwner<K, T> where
    K: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<K, T> Send for HashMapOwner<K, T> where
    K: Send,
    T: Send
[src]

impl<K, T> Sync for HashMapOwner<K, T> where
    K: Sync,
    T: Sync
[src]

impl<K, T> Unpin for HashMapOwner<K, T> where
    K: Unpin,
    T: Unpin
[src]

impl<K, T> UnwindSafe for HashMapOwner<K, T> where
    K: UnwindSafe,
    T: UnwindSafe
[src]

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, 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.