[][src]Struct elephantry::Rows

pub struct Rows<E: Entity> { /* fields omitted */ }

Implementations

impl<E: Entity> Rows<E>[src]

pub fn get(&self, n: usize) -> E[src]

pub fn try_get(&self, n: usize) -> Option<E>[src]

Methods from Deref<Target = Result>

pub fn get(&self, n: usize) -> Tuple[src]

pub fn try_get(&self, n: usize) -> Option<Tuple>[src]

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

pub fn is_empty(&self) -> bool[src]

pub fn state(&self) -> State[src]

Trait Implementations

impl<E: Debug + Entity> Debug for Rows<E>[src]

impl<E: Entity> Deref for Rows<E>[src]

type Target = Result

The resulting type after dereferencing.

impl<E: Entity> From<Result> for Rows<E>[src]

impl<E: Entity> Iterator for Rows<E>[src]

type Item = E

The type of the elements being iterated over.

Auto Trait Implementations

impl<E> !RefUnwindSafe for Rows<E>

impl<E> Send for Rows<E> where
    E: Send

impl<E> !Sync for Rows<E>

impl<E> Unpin for Rows<E> where
    E: Unpin

impl<E> UnwindSafe for Rows<E> where
    E: UnwindSafe

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.