pub enum Nested<'a> {
Primitive(Option<&'a Bitmap>, bool, usize),
List(ListNested<'a, i32>),
LargeList(ListNested<'a, i64>),
Struct(Option<&'a Bitmap>, bool, usize),
}
Expand description
Descriptor of nested information of a field
Variants§
Primitive(Option<&'a Bitmap>, bool, usize)
a primitive (leaf or parquet column) bitmap, _, length
List(ListNested<'a, i32>)
a list
LargeList(ListNested<'a, i64>)
a list
Struct(Option<&'a Bitmap>, bool, usize)
a struct
Implementations§
Trait Implementations§
source§impl<'a> PartialEq for Nested<'a>
impl<'a> PartialEq for Nested<'a>
impl<'a> StructuralPartialEq for Nested<'a>
Auto Trait Implementations§
impl<'a> Freeze for Nested<'a>
impl<'a> RefUnwindSafe for Nested<'a>
impl<'a> Send for Nested<'a>
impl<'a> Sync for Nested<'a>
impl<'a> Unpin for Nested<'a>
impl<'a> UnwindSafe for Nested<'a>
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