Struct csv_sniffer::metadata::Header [] [src]

pub struct Header {
    pub has_header_row: bool,
    pub num_preamble_rows: usize,
}

Metadata about the header of the CSV file.

Fields

Whether or not this CSV file has a header row (a row containing column labels).

Number of rows that occur before either the header row (if has_header_row is `true), or the first data row.

Trait Implementations

impl Debug for Header
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Header
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Header
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Header

impl Sync for Header