[][src]Trait agnes::store::NRows

pub trait NRows {
    fn nrows(&self) -> usize;
}

Trait to provide the number of rows of this data structure.

Required methods

fn nrows(&self) -> usize

Return the number of rows in this data structure.

Loading content...

Implementors

impl NRows for Nil[src]

impl<Fields> NRows for DataFrame<Fields> where
    Fields: AssocStorage,
    DataStore<Fields>: NRows
[src]

impl<Fields> NRows for DataStore<Fields> where
    Fields: AssocStorage,
    Fields::Storage: NRows
[src]

impl<FrameIndex, FrameFields, Tail> NRows for ViewFrameCons<FrameIndex, FrameFields, Tail> where
    FrameFields: AssocStorage,
    DataFrame<FrameFields>: NRows
[src]

impl<Label, DType, Tail> NRows for StorageCons<Label, DType, Tail>[src]

Loading content...