Enum parquet2::deserialize::NativePageState
source · pub enum NativePageState<'a, T, P>where
T: NativeType,{
Optional(DefLevelsDecoder<'a>, Casted<'a, T>),
Required(Casted<'a, T>),
RequiredDictionary(Dictionary<'a, P>),
OptionalDictionary(DefLevelsDecoder<'a>, Dictionary<'a, P>),
}
Expand description
The deserialization state of a DataPage
of Primitive
parquet primitive type
Variants§
Optional(DefLevelsDecoder<'a>, Casted<'a, T>)
A page of optional values
Required(Casted<'a, T>)
A page of required values
RequiredDictionary(Dictionary<'a, P>)
A page of required, dictionary-encoded values
OptionalDictionary(DefLevelsDecoder<'a>, Dictionary<'a, P>)
A page of optional, dictionary-encoded values