Struct weezl::error::BufferResult
source · pub struct BufferResult {
pub consumed_in: usize,
pub consumed_out: usize,
pub status: Result<LzwStatus, LzwError>,
}
Expand description
The result of a coding operation on a pair of buffer.
Fields§
§consumed_in: usize
The number of bytes consumed from the input buffer.
consumed_out: usize
The number of bytes written into the output buffer.
status: Result<LzwStatus, LzwError>
The status after returning from the write call.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BufferResult
impl RefUnwindSafe for BufferResult
impl Send for BufferResult
impl Sync for BufferResult
impl Unpin for BufferResult
impl UnwindSafe for BufferResult
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