Struct avro_schema::file::CompressedBlock
source · [−]Expand description
A compressed Avro block.
Fields
number_of_rows: usize
The number of rows
data: Vec<u8>
The compressed data
Implementations
Trait Implementations
sourceimpl Clone for CompressedBlock
impl Clone for CompressedBlock
sourcefn clone(&self) -> CompressedBlock
fn clone(&self) -> CompressedBlock
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CompressedBlock
impl Debug for CompressedBlock
sourceimpl Default for CompressedBlock
impl Default for CompressedBlock
sourcefn default() -> CompressedBlock
fn default() -> CompressedBlock
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CompressedBlock> for CompressedBlock
impl PartialEq<CompressedBlock> for CompressedBlock
sourcefn eq(&self, other: &CompressedBlock) -> bool
fn eq(&self, other: &CompressedBlock) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CompressedBlock) -> bool
fn ne(&self, other: &CompressedBlock) -> bool
This method tests for !=
.
impl Eq for CompressedBlock
impl StructuralEq for CompressedBlock
impl StructuralPartialEq for CompressedBlock
Auto Trait Implementations
impl RefUnwindSafe for CompressedBlock
impl Send for CompressedBlock
impl Sync for CompressedBlock
impl Unpin for CompressedBlock
impl UnwindSafe for CompressedBlock
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