Enum csv_sniffer::metadata::Comment [] [src]

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

The comment character (or Disabled if commenting doesn't exist in this dialect)

Variants

Comments are enabled, with the provided character as the comment character.

Comments are disabled.

Trait Implementations

impl Clone for Comment
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Comment
[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<Comment> for Option<u8>
[src]

[src]

Performs the conversion.

impl Debug for Comment
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment