pub struct FieldRepetitionType(pub i32);
Expand description
Representation of Schemas
Tuple Fields§
§0: i32
Implementations§
Source§impl FieldRepetitionType
impl FieldRepetitionType
Sourcepub const REQUIRED: FieldRepetitionType = _
pub const REQUIRED: FieldRepetitionType = _
This field is required (can not be null) and each row has exactly 1 value.
Sourcepub const OPTIONAL: FieldRepetitionType = _
pub const OPTIONAL: FieldRepetitionType = _
The field is optional (can be null) and each row has 0 or 1 values.
Sourcepub const REPEATED: FieldRepetitionType = _
pub const REPEATED: FieldRepetitionType = _
The field is repeated and can contain 0 or more values
pub const ENUM_VALUES: &'static [Self] = _
Trait Implementations§
Source§impl Clone for FieldRepetitionType
impl Clone for FieldRepetitionType
Source§fn clone(&self) -> FieldRepetitionType
fn clone(&self) -> FieldRepetitionType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FieldRepetitionType
impl Debug for FieldRepetitionType
Source§impl From<&FieldRepetitionType> for i32
impl From<&FieldRepetitionType> for i32
Source§fn from(e: &FieldRepetitionType) -> i32
fn from(e: &FieldRepetitionType) -> i32
Converts to this type from the input type.
Source§impl From<&i32> for FieldRepetitionType
impl From<&i32> for FieldRepetitionType
Source§impl From<FieldRepetitionType> for i32
impl From<FieldRepetitionType> for i32
Source§fn from(e: FieldRepetitionType) -> i32
fn from(e: FieldRepetitionType) -> i32
Converts to this type from the input type.
Source§impl From<Repetition> for FieldRepetitionType
impl From<Repetition> for FieldRepetitionType
Source§fn from(value: Repetition) -> Self
fn from(value: Repetition) -> Self
Converts to this type from the input type.
Source§impl From<i32> for FieldRepetitionType
impl From<i32> for FieldRepetitionType
Source§impl Hash for FieldRepetitionType
impl Hash for FieldRepetitionType
Source§impl Ord for FieldRepetitionType
impl Ord for FieldRepetitionType
Source§fn cmp(&self, other: &FieldRepetitionType) -> Ordering
fn cmp(&self, other: &FieldRepetitionType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FieldRepetitionType
impl PartialEq for FieldRepetitionType
Source§impl PartialOrd for FieldRepetitionType
impl PartialOrd for FieldRepetitionType
Source§impl TSerializable for FieldRepetitionType
impl TSerializable for FieldRepetitionType
Source§fn write_to_out_protocol<T: TOutputProtocol>(
&self,
o_prot: &mut T,
) -> Result<()>
fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T, ) -> Result<()>
Writes the struct to the output Thrift protocol
Source§fn read_from_in_protocol<T: TInputProtocol>(
i_prot: &mut T,
) -> Result<FieldRepetitionType>
fn read_from_in_protocol<T: TInputProtocol>( i_prot: &mut T, ) -> Result<FieldRepetitionType>
Reads the struct from the input Thrift protocol
Source§impl TryFrom<FieldRepetitionType> for Repetition
impl TryFrom<FieldRepetitionType> for Repetition
Source§type Error = ParquetError
type Error = ParquetError
The type returned in the event of a conversion error.
Source§fn try_from(value: FieldRepetitionType) -> Result<Self>
fn try_from(value: FieldRepetitionType) -> Result<Self>
Performs the conversion.
impl Copy for FieldRepetitionType
impl Eq for FieldRepetitionType
impl StructuralPartialEq for FieldRepetitionType
Auto Trait Implementations§
impl Freeze for FieldRepetitionType
impl RefUnwindSafe for FieldRepetitionType
impl Send for FieldRepetitionType
impl Sync for FieldRepetitionType
impl Unpin for FieldRepetitionType
impl UnwindSafe for FieldRepetitionType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more