Struct agnes::frame::DataFrame [] [src]

pub struct DataFrame { /* fields omitted */ }

A data frame. A DataStore reference along with record-based filtering and sorting details.

Methods

impl DataFrame
[src]

[src]

Number of rows that pass the filter in this frame.

[src]

Get the field type of a particular field in the underlying DataStore.

[src]

Returns true if this DataFrame contains this field.

Trait Implementations

impl Debug for DataFrame
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DataFrame
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Filter<u64> for DataFrame
[src]

[src]

Filter the contents of this data structure by applying the supplied predicate on the specified field. Read more

impl Filter<i64> for DataFrame
[src]

[src]

Filter the contents of this data structure by applying the supplied predicate on the specified field. Read more

impl Filter<String> for DataFrame
[src]

[src]

Filter the contents of this data structure by applying the supplied predicate on the specified field. Read more

impl Filter<bool> for DataFrame
[src]

[src]

Filter the contents of this data structure by applying the supplied predicate on the specified field. Read more

impl Filter<f64> for DataFrame
[src]

[src]

Filter the contents of this data structure by applying the supplied predicate on the specified field. Read more

impl SortBy for DataFrame
[src]

[src]

Sort the contents of this data structure (ascending) by the specified field.

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

[src]

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

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

[src]

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

impl From<DataStore> for DataFrame
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for DataFrame

impl !Sync for DataFrame