Enum csv_sniffer::metadata::Escape [] [src]

pub enum Escape {
    Enabled(u8),
    Disabled,
}

The escape character (or Disabled if escaping is disabled)

Variants

Escapes are enabled, with the provided character as the escape character.

Escapes are disabled.

Trait Implementations

impl Clone for Escape
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Escape
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<Escape> for Option<u8>
[src]

[src]

Performs the conversion.

impl Debug for Escape
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Escape

impl Sync for Escape