[][src]Struct microkelvin::LevelMut

pub struct LevelMut<'a, C, S> where
    C: Compound<S>,
    S: Store
{ /* fields omitted */ }

Represents a level in the branch.

The offset is pointing at the child of the node stored behind the LevelInner pointer.

Implementations

impl<'a, C, S> LevelMut<'a, C, S> where
    C: Compound<S>,
    C::Annotation: Annotation<C, S>,
    S: Store
[src]

pub fn offset(&self) -> usize[src]

Returns the offset of the branch level

Trait Implementations

impl<'a, C, S> Deref for LevelMut<'a, C, S> where
    C: Compound<S>,
    C::Annotation: Annotation<C, S>,
    S: Store
[src]

type Target = C

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, C, S> RefUnwindSafe for LevelMut<'a, C, S> where
    C: RefUnwindSafe,
    S: RefUnwindSafe

impl<'a, C, S> Send for LevelMut<'a, C, S> where
    C: Send,
    S: Send

impl<'a, C, S> Sync for LevelMut<'a, C, S> where
    C: Sync,
    S: Sync

impl<'a, C, S> Unpin for LevelMut<'a, C, S> where
    C: Unpin,
    S: Unpin

impl<'a, C, S> !UnwindSafe for LevelMut<'a, C, S>

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.