Struct dcsv::Row

source · []
pub struct Row {
    pub values: HashMap<String, Value>,
}
Expand description

Row

Row is implementated as a hashmap. You cannot iterate row without column information.

Fields

values: HashMap<String, Value>

Implementations

Create a new row

Convert row to vector with given columns

It is totally valid to give partial columns into a row.

Get comma separated row string

This requires columns because a row is not a linear container. Partial column is not an error but valid behaviour.

Rename column name inside row map

This doesn’t validate column’s name and should comply with column name rule to avoid unintended behaviour.

Insert a new cell(key, value pair) into a row

Get a cell value by a key

Update a cell’s value with a given value

This doesn’t fail and silently do nothing if key doesn’t exist.

Chagnes a cell’s value type

This method tries to naturally convert cell’s type. Empty text value defaults to “0”.

Remove a cell by key

Get iterator with given columns

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.