Struct csv::Decoded [] [src]

pub struct Decoded { /* fields omitted */ }

A record to be decoded.

This is a "wrapper" type that allows the Decoder machinery from the serialize crate to decode a single CSV record into your custom types.

Generally, you should not need to use this type directly. Instead, you should prefer the decode or decode_all methods defined on CsvReader.

Methods

impl Decoded
[src]

Creates a new decodable record from a record of byte strings.

Trait Implementations

impl Decoder for Decoded
[src]

The error type for method results.

Record a decoding error. Read more

Read a nil value.

Read a usize value.

Read a u64 value.

Read a u32 value.

Read a u16 value.

Read a u8 value.

Read a isize value.

Read a i64 value.

Read a i32 value.

Read a i16 value.

Read a i8 value.

Read a bool value.

Read a f64 value.

Read a f32 value.

Read a char value.

Read a string value.

Read an enumeration value. Read more

Read an enumeration value. Read more

Read an unnamed data item for an enumeration variant. Read more

Read an enumeration value. Read more

Read a named data item for an enumeration variant. Read more

Read an struct value. Read more

Read a field for a struct value. Read more

Read a tuple value. Read more

Read a data item for a tuple. Read more

Read a tuple struct value. Read more

Read a data item for a tuple struct. Read more

Read an optional value. Read more

Read a sequence of values. Read more

Read an element in the sequence. Read more

Read an associative container (map). Read more

Read the key for an entry in a map. Read more

Read the value for an entry in a map. Read more