pub struct FooterRef<'a>(/* private fields */);Expand description
Reference to a deserialized Footer.
Implementations§
Sourcepub fn version(&self) -> Result<MetadataVersion>
pub fn version(&self) -> Result<MetadataVersion>
Getter for the version field.
Sourcepub fn dictionaries(&self) -> Result<Option<Vector<'a, BlockRef<'a>>>>
pub fn dictionaries(&self) -> Result<Option<Vector<'a, BlockRef<'a>>>>
Getter for the dictionaries field.
Sourcepub fn record_batches(&self) -> Result<Option<Vector<'a, BlockRef<'a>>>>
pub fn record_batches(&self) -> Result<Option<Vector<'a, BlockRef<'a>>>>
Getter for the recordBatches field.
Sourcepub fn custom_metadata(
&self,
) -> Result<Option<Vector<'a, Result<KeyValueRef<'a>>>>>
pub fn custom_metadata( &self, ) -> Result<Option<Vector<'a, Result<KeyValueRef<'a>>>>>
Getter for the custom_metadata field.
Trait Implementations§
Auto Trait Implementations§
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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