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

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.

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 new cell(key, value pair) into a row

Get cell value by key

Update cell’s value with given value

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

Chagnes cell’s value type

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

Remove cell by key

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.