pub struct ZPAQ { /* private fields */ }Expand description
ZPAQ-like chunking algorithm.
Note that this does NOT match the official implementation (the ZPAQ C++
library). This functions the same way, but does not use the same specific
sizes, and does not enforce chunk size limits (unless you use
Chunker::max_size() explicitly). In addition, the constants used by this
implementation are different; see
#6.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZPAQ
impl RefUnwindSafe for ZPAQ
impl Send for ZPAQ
impl Sync for ZPAQ
impl Unpin for ZPAQ
impl UnsafeUnpin for ZPAQ
impl UnwindSafe for ZPAQ
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