Struct parquet_format_async_temp::PageLocation [−][src]
pub struct PageLocation {
pub offset: i64,
pub compressed_page_size: i32,
pub first_row_index: i64,
}
Fields
offset: i64
Offset of the page in the file *
compressed_page_size: i32
Size of the page, including header. Sum of compressed_page_size and header length
first_row_index: i64
Index within the RowGroup of the first row of the page; this means pages change on record boundaries (r = 0).
Implementations
pub async fn stream_from_in_protocol(
i_prot: &mut dyn TInputStreamProtocol
) -> Result<PageLocation>
pub async fn write_to_out_stream_protocol(
&self,
o_prot: &mut dyn TOutputStreamProtocol
) -> Result<usize>
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for PageLocation
impl Send for PageLocation
impl Sync for PageLocation
impl Unpin for PageLocation
impl UnwindSafe for PageLocation
Blanket Implementations
Mutably borrows from an owned value. Read more