Enum parquet::basic::Repetition [−][src]
pub enum Repetition {
REQUIRED,
OPTIONAL,
REPEATED,
}Representation of field types in schema.
Variants
REQUIREDField is required (can not be null) and each record has exactly 1 value.
OPTIONALField is optional (can be null) and each record has 0 or 1 values.
REPEATEDField is repeated and can contain 0 or more values.
Trait Implementations
impl Debug for Repetition[src]
impl Debug for Repetitionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Repetition[src]
impl Clone for Repetitionfn clone(&self) -> Repetition[src]
fn clone(&self) -> RepetitionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Repetition[src]
impl Copy for Repetitionimpl PartialEq for Repetition[src]
impl PartialEq for Repetitionfn eq(&self, other: &Repetition) -> bool[src]
fn eq(&self, other: &Repetition) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Display for Repetition[src]
impl Display for Repetitionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl From<FieldRepetitionType> for Repetition[src]
impl From<FieldRepetitionType> for Repetitionimpl FromStr for Repetition[src]
impl FromStr for RepetitionAuto Trait Implementations
impl Send for Repetition
impl Send for Repetitionimpl Sync for Repetition
impl Sync for Repetition