pub struct FlushBoundary {
pub start: usize,
}Expand description
A full-flush boundary.
start is the byte offset where the next independently-decompressible
segment begins (the byte immediately after the FF FF NLEN field).
Fields§
§start: usizeTrait Implementations§
Source§impl Clone for FlushBoundary
impl Clone for FlushBoundary
Source§fn clone(&self) -> FlushBoundary
fn clone(&self) -> FlushBoundary
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 moreimpl Copy for FlushBoundary
Source§impl Debug for FlushBoundary
impl Debug for FlushBoundary
impl Eq for FlushBoundary
Source§impl PartialEq for FlushBoundary
impl PartialEq for FlushBoundary
impl StructuralPartialEq for FlushBoundary
Auto Trait Implementations§
impl Freeze for FlushBoundary
impl RefUnwindSafe for FlushBoundary
impl Send for FlushBoundary
impl Sync for FlushBoundary
impl Unpin for FlushBoundary
impl UnsafeUnpin for FlushBoundary
impl UnwindSafe for FlushBoundary
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