[][src]Trait microkelvin::Nth

pub trait Nth<'a, S> where
    Self: Compound<S> + Sized,
    S: Store
{ fn nth(&'a self, n: u64) -> Result<Option<Branch<'a, Self, S>>, S::Error>;
fn nth_mut(
        &'a mut self,
        n: u64
    ) -> Result<Option<BranchMut<'a, Self, S>>, S::Error>; }

Required methods

fn nth(&'a self, n: u64) -> Result<Option<Branch<'a, Self, S>>, S::Error>

fn nth_mut(
    &'a mut self,
    n: u64
) -> Result<Option<BranchMut<'a, Self, S>>, S::Error>

Loading content...

Implementors

impl<'a, C, S> Nth<'a, S> for C where
    C: Compound<S>,
    C::Annotation: Borrow<Cardinality>,
    S: Store
[src]

Loading content...