pub struct CompressedBlock {
pub header: CompressedBlockHeader,
pub header_len: usize,
pub payload: Range<usize>,
}Fields§
§header: CompressedBlockHeader§header_len: usize§payload: Range<usize>Trait Implementations§
Source§impl Clone for CompressedBlock
impl Clone for CompressedBlock
Source§fn clone(&self) -> CompressedBlock
fn clone(&self) -> CompressedBlock
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompressedBlock
impl Debug for CompressedBlock
Source§impl PartialEq for CompressedBlock
impl PartialEq for CompressedBlock
Source§fn eq(&self, other: &CompressedBlock) -> bool
fn eq(&self, other: &CompressedBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CompressedBlock
impl StructuralPartialEq for CompressedBlock
Auto Trait Implementations§
impl Freeze for CompressedBlock
impl RefUnwindSafe for CompressedBlock
impl Send for CompressedBlock
impl Sync for CompressedBlock
impl Unpin for CompressedBlock
impl UnsafeUnpin for CompressedBlock
impl UnwindSafe for CompressedBlock
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