[][src]Trait agnes::select::FieldSelect

pub trait FieldSelect {
    fn field<Label>(&self) -> Self::Output
    where
        Self: SelectFieldByLabel<Label>
, { ... } }

Trait for accessing the data of a single field as a struct which implements DataIndex.

Provided methods

fn field<Label>(&self) -> Self::Output where
    Self: SelectFieldByLabel<Label>, 

Returns a struct containing the data for the field specified by Label.

This method is a convenience method for calling the select_field method on the SelectFieldByLabel trait.

Loading content...

Implementors

impl<Fields> FieldSelect for DataFrame<Fields> where
    Fields: AssocStorage
[src]

fn field<Label>(&self) -> Self::Output where
    Self: SelectFieldByLabel<Label>, 
[src]

impl<Fields> FieldSelect for DataStore<Fields> where
    Fields: AssocStorage
[src]

fn field<Label>(&self) -> Self::Output where
    Self: SelectFieldByLabel<Label>, 
[src]

impl<Labels, Frames> FieldSelect for DataView<Labels, Frames>[src]

fn field<Label>(&self) -> Self::Output where
    Self: SelectFieldByLabel<Label>, 
[src]

Loading content...