Enum parquet2::schema::types::GroupConvertedType
source · pub enum GroupConvertedType {
Map,
MapKeyValue,
List,
}
Variants§
Map
a map is converted as an optional field containing a repeated key/value pair
MapKeyValue
a key/value pair is converted into a group of two fields
List
a list is converted into an optional field containing a repeated field for its values
Trait Implementations§
source§impl Clone for GroupConvertedType
impl Clone for GroupConvertedType
source§fn clone(&self) -> GroupConvertedType
fn clone(&self) -> GroupConvertedType
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 GroupConvertedType
impl Debug for GroupConvertedType
source§impl From<GroupConvertedType> for ConvertedType
impl From<GroupConvertedType> for ConvertedType
source§fn from(type_: GroupConvertedType) -> Self
fn from(type_: GroupConvertedType) -> Self
Converts to this type from the input type.
source§impl Hash for GroupConvertedType
impl Hash for GroupConvertedType
source§impl PartialEq for GroupConvertedType
impl PartialEq for GroupConvertedType
source§fn eq(&self, other: &GroupConvertedType) -> bool
fn eq(&self, other: &GroupConvertedType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<ConvertedType> for GroupConvertedType
impl TryFrom<ConvertedType> for GroupConvertedType
impl Copy for GroupConvertedType
impl Eq for GroupConvertedType
impl StructuralPartialEq for GroupConvertedType
Auto Trait Implementations§
impl Freeze for GroupConvertedType
impl RefUnwindSafe for GroupConvertedType
impl Send for GroupConvertedType
impl Sync for GroupConvertedType
impl Unpin for GroupConvertedType
impl UnwindSafe for GroupConvertedType
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