Struct weezl::BufferResult [−][src]
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.