Enum parquet::basic::Repetition[][src]

pub enum Repetition {
    REQUIRED,
    OPTIONAL,
    REPEATED,
}

Representation of field types in schema.

Variants

Field is required (can not be null) and each record has exactly 1 value.

Field is optional (can be null) and each record has 0 or 1 values.

Field is repeated and can contain 0 or more values.

Trait Implementations

impl Debug for Repetition
[src]

Formats the value using the given formatter. Read more

impl Clone for Repetition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Repetition
[src]

impl PartialEq for Repetition
[src]

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

This method tests for !=.

impl Display for Repetition
[src]

Formats the value using the given formatter. Read more

impl From<FieldRepetitionType> for Repetition
[src]

Performs the conversion.

impl FromStr for Repetition
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Auto Trait Implementations

impl Send for Repetition

impl Sync for Repetition