pub struct DecompressOutcome {
pub bytes_read: usize,
pub bytes_written: usize,
}
Expand description
Outcome of EntryFsm::process
Fields§
§bytes_read: usize
Number of bytes read from input
bytes_written: usize
Number of bytes written to output
Trait Implementations§
Source§impl Debug for DecompressOutcome
impl Debug for DecompressOutcome
Source§impl Default for DecompressOutcome
impl Default for DecompressOutcome
Source§fn default() -> DecompressOutcome
fn default() -> DecompressOutcome
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DecompressOutcome
impl RefUnwindSafe for DecompressOutcome
impl Send for DecompressOutcome
impl Sync for DecompressOutcome
impl Unpin for DecompressOutcome
impl UnwindSafe for DecompressOutcome
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