Enum csv_sniffer::SampleSize [] [src]

pub enum SampleSize {
    Records(usize),
    Bytes(usize),
    All,
}

Argument used when calling sample_size on Sniffer.

Variants

Use a number of records as the size of the sample to sniff.

Use a number of bytes as the size of the sample to sniff.

Sniff the entire sample.

Trait Implementations

impl Debug for SampleSize
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SampleSize
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for SampleSize
[src]

Auto Trait Implementations

impl Send for SampleSize

impl Sync for SampleSize