[][src]Struct fixed_map::storage::BooleanStorage

pub struct BooleanStorage<V> { /* fields omitted */ }

Storage for bools.

Trait Implementations

impl<V> Storage<bool, V> for BooleanStorage<V>[src]

type Iter = Iter<V>

Immutable iterator over storage. Uses raw pointers (unsafe) since we don't have GATs. Read more

type IterMut = IterMut<V>

Mutable iterator over storage. Uses raw pointers (unsafe) since we don't have GATs. Read more

impl<V> Clone for BooleanStorage<V> where
    V: Clone
[src]

impl<V> Default for BooleanStorage<V>[src]

impl<V> Eq for BooleanStorage<V> where
    V: Eq
[src]

impl<V> PartialEq<BooleanStorage<V>> for BooleanStorage<V> where
    V: PartialEq
[src]

Auto Trait Implementations

impl<V> Send for BooleanStorage<V> where
    V: Send

impl<V> Sync for BooleanStorage<V> where
    V: Sync

impl<V> Unpin for BooleanStorage<V> where
    V: Unpin

impl<V> UnwindSafe for BooleanStorage<V> where
    V: UnwindSafe

impl<V> RefUnwindSafe for BooleanStorage<V> where
    V: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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