Struct miniz_oxide::StreamResult
source · pub struct StreamResult {
pub bytes_consumed: usize,
pub bytes_written: usize,
pub status: MZResult,
}
Expand description
A structure containing the result of a call to the inflate or deflate streaming functions.
Fields§
§bytes_consumed: usize
The number of bytes consumed from the input slice.
bytes_written: usize
The number of bytes written to the output slice.
status: MZResult
The return status of the call.
Implementations§
source§impl StreamResult
impl StreamResult
pub const fn error(error: MZError) -> StreamResult
Trait Implementations§
source§impl Clone for StreamResult
impl Clone for StreamResult
source§fn clone(&self) -> StreamResult
fn clone(&self) -> StreamResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StreamResult
impl Debug for StreamResult
source§impl From<&StreamResult> for MZResult
impl From<&StreamResult> for MZResult
source§fn from(res: &StreamResult) -> Self
fn from(res: &StreamResult) -> Self
Converts to this type from the input type.
source§impl From<StreamResult> for MZResult
impl From<StreamResult> for MZResult
source§fn from(res: StreamResult) -> Self
fn from(res: StreamResult) -> Self
Converts to this type from the input type.
source§impl Hash for StreamResult
impl Hash for StreamResult
source§impl PartialEq for StreamResult
impl PartialEq for StreamResult
source§fn eq(&self, other: &StreamResult) -> bool
fn eq(&self, other: &StreamResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StreamResult
impl Eq for StreamResult
impl StructuralPartialEq for StreamResult
Auto Trait Implementations§
impl Freeze for StreamResult
impl RefUnwindSafe for StreamResult
impl Send for StreamResult
impl Sync for StreamResult
impl Unpin for StreamResult
impl UnwindSafe for StreamResult
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)