Struct weezl::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.
Auto Trait Implementations
impl RefUnwindSafe for BufferResult
impl Send for BufferResult
impl Sync for BufferResult
impl Unpin for BufferResult
impl UnwindSafe for BufferResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more