pub(crate) struct Page {
pub(crate) compression: Option<&'static str>,
pub(crate) encoding: &'static str,
pub(crate) page_type: &'static str,
pub(crate) offset: u64,
pub(crate) compressed_bytes: i32,
pub(crate) uncompressed_bytes: i32,
pub(crate) header_bytes: i32,
pub(crate) num_values: i32,
}Fields§
§compression: Option<&'static str>§encoding: &'static str§page_type: &'static str§offset: u64§compressed_bytes: i32§uncompressed_bytes: i32§header_bytes: i32§num_values: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Page
impl RefUnwindSafe for Page
impl Send for Page
impl Sync for Page
impl Unpin for Page
impl UnwindSafe for Page
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> 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