Enum csv_core::Terminator [] [src]

pub enum Terminator {
    CRLF,
    Any(u8),
    // some variants omitted
}

A record terminator.

Use this to specify the record terminator while parsing CSV. The default is CRLF, which treats \r, \n or \r\n as a single record terminator.

Variants

Parses \r, \n or \r\n as a single record terminator.

Parses the byte given as a record terminator.

Trait Implementations

impl Clone for Terminator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Terminator
[src]

impl Debug for Terminator
[src]

Formats the value using the given formatter.

impl Default for Terminator
[src]

Returns the "default value" for a type. Read more