Module agnes::store[][src]

Data storage struct and implentation.

Structs

CopyIntoFn

Function (implementing Func) that copies data into a target location.

DataStore

Data storage underlying a dataframe. Data is retrievable both by index (of the fields vector) and by field name.

DsField

Details of a field within a data store

Traits

AddClonedDataFromIter

Trait for cloning data into a data structure (e.g. DataStore) from an iterator.

AddData

Trait for adding data (of valid types) to a DataStore.

AddDataFromIter

Trait for adding data to a data structure (e.g. DataStore) from an iterator.

AddDataVec

Trait for adding a vector of data (of valid types) to a DataStore.

IntoDataStore

Trait for data structures that can be converted into a new DataStore.

WithClonedDataFromIter

Trait for cloning data (of valid types) from an iterator into a data structure, which is consumed and returned in the process.

WithDataFromIter

Trait for adding data (of valid types) from an iterator to a data structure, which is consumed and returned in the process.

WithDataVec

Trait for adding a vector of data (of valid types) to a data structure, which is consumed and returned in the process.