pub enum PageType {
DataPage,
DataPageV2,
DictionaryPage,
IndexPage,
}
Variants
DataPage
DataPageV2
DictionaryPage
IndexPage
Trait Implementations
sourceimpl From<PageType> for ParquetPageType
impl From<PageType> for ParquetPageType
sourceimpl TryFrom<PageType> for PageType
impl TryFrom<PageType> for PageType
type Error = ParquetError
type Error = ParquetError
The type returned in the event of a conversion error.
sourcefn try_from(type_: ParquetPageType) -> Result<Self, Self::Error>
fn try_from(type_: ParquetPageType) -> Result<Self, Self::Error>
Performs the conversion.
impl Copy for PageType
impl Eq for PageType
impl StructuralEq for PageType
impl StructuralPartialEq for PageType
Auto Trait Implementations
impl RefUnwindSafe for PageType
impl Send for PageType
impl Sync for PageType
impl Unpin for PageType
impl UnwindSafe for PageType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more