pub(super) struct FileMeta<'a> {
pub(super) file_metadata: &'a FileMetaData,
pub(super) row_groups: &'a Vec<RowGroupMetaData>,
}Fields§
§file_metadata: &'a FileMetaData§row_groups: &'a Vec<RowGroupMetaData>Trait Implementations§
Source§impl<'a> WriteThrift for FileMeta<'a>
impl<'a> WriteThrift for FileMeta<'a>
Source§const ELEMENT_TYPE: ElementType = ElementType::Struct
const ELEMENT_TYPE: ElementType = ElementType::Struct
The
ElementType to use when a list of this object is written.Source§fn write_thrift<W: Write>(
&self,
writer: &mut ThriftCompactOutputProtocol<W>,
) -> Result<()>
fn write_thrift<W: Write>( &self, writer: &mut ThriftCompactOutputProtocol<W>, ) -> Result<()>
Serialize this object to the given
writer.Auto Trait Implementations§
impl<'a> Freeze for FileMeta<'a>
impl<'a> RefUnwindSafe for FileMeta<'a>
impl<'a> Send for FileMeta<'a>
impl<'a> Sync for FileMeta<'a>
impl<'a> Unpin for FileMeta<'a>
impl<'a> UnwindSafe for FileMeta<'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
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