[][src]Struct microkelvin::Level

pub struct Level<'a, C, S> where
    C: Clone
{ /* 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> Level<'a, C, S> where
    C: Clone
[src]

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

Returns the offset of the branch level

Trait Implementations

impl<'a, C, S> Deref for Level<'a, C, S> where
    C: Clone
[src]

type Target = C

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, C, S> RefUnwindSafe for Level<'a, C, S> where
    C: RefUnwindSafe,
    S: RefUnwindSafe
[src]

impl<'a, C, S> Send for Level<'a, C, S> where
    C: Send + Sync,
    S: Send
[src]

impl<'a, C, S> Sync for Level<'a, C, S> where
    C: Sync,
    S: Sync
[src]

impl<'a, C, S> Unpin for Level<'a, C, S> where
    C: Unpin,
    S: Unpin
[src]

impl<'a, C, S> UnwindSafe for Level<'a, C, S> where
    C: RefUnwindSafe + UnwindSafe,
    S: 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.