[][src]Trait agnes::access::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<DI> NRows for DI where
    DI: DataIndex
[src]

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

impl<FrameFields, FramedStore> NRows for DataFrame<FrameFields, FramedStore> where
    FramedStore: NRows
[src]

impl<L, V, Tail> NRows for LVCons<L, V, Tail> where
    V: Valued,
    ValueOf<V>: NRows
[src]

impl<Labels, Frames> NRows for DataView<Labels, Frames> where
    Frames: NRows
[src]

Loading content...