Struct agnes::apply::FieldIndexSelector [] [src]

pub struct FieldIndexSelector<'a>(pub &'a FieldIdent, pub usize);

A data selector using both a data field identifier and the data index. Used to select a specific element in a two-dimensional data structs (with both fields and elements) along with a FieldFn.

Trait Implementations

impl<'a> ApplyToElem<FieldIndexSelector<'a>> for DataStore
[src]

[src]

Apply an ElemFn to an element selected with the provided Selector.

impl<'a> ApplyToElem<FieldIndexSelector<'a>> for DataView
[src]

[src]

Apply an ElemFn to an element selected with the provided Selector.

impl<'a> ApplyToElem<FieldIndexSelector<'a>> for DataFrame
[src]

[src]

Apply an ElemFn to an element selected with the provided Selector.

impl<'a> Selector for FieldIndexSelector<'a>
[src]

The type of the selector (the information used to specify what the FieldFn or ElemFn operates upon). Read more

[src]

Returns the field / element selector details.

Auto Trait Implementations

impl<'a> Send for FieldIndexSelector<'a>

impl<'a> Sync for FieldIndexSelector<'a>