Struct agnes::apply::FieldSelector [] [src]

pub struct FieldSelector<'a>(pub &'a FieldIdent);

A data selector using only a field identifier. Used to select a specific field to be passed to FieldFn.

Trait Implementations

impl<'a> ApplyToField<FieldSelector<'a>> for DataStore
[src]

[src]

Apply a FieldFn to a field selected with the provided Selector.

impl<'a, 'b, 'c> ApplyToField2<FieldSelector<'a>> for (&'b DataStore, &'c DataStore)
[src]

[src]

Apply a Field2Fn (a function that operates simultaneously on fields from two different sources) to fields selected with the provided Selectors. Read more

impl<'a> ApplyToField<FieldSelector<'a>> for DataView
[src]

[src]

Apply a FieldFn to a field selected with the provided Selector.

impl<'a> ApplyToField2<FieldSelector<'a>> for DataView
[src]

[src]

Apply a Field2Fn (a function that operates simultaneously on fields from two different sources) to fields selected with the provided Selectors. Read more

impl<'a, 'b, 'c> ApplyToField2<FieldSelector<'a>> for (&'b DataView, &'c DataView)
[src]

[src]

Apply a Field2Fn (a function that operates simultaneously on fields from two different sources) to fields selected with the provided Selectors. Read more

impl<'a> ApplyToField<FieldSelector<'a>> for DataFrame
[src]

[src]

Apply a FieldFn to a field selected with the provided Selector.

impl<'a, 'b, 'c> ApplyToField2<FieldSelector<'a>> for (&'b DataFrame, &'c DataFrame)
[src]

[src]

Apply a Field2Fn (a function that operates simultaneously on fields from two different sources) to fields selected with the provided Selectors. Read more

impl<'a> Selector for FieldSelector<'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 FieldSelector<'a>

impl<'a> Sync for FieldSelector<'a>