pub type MZResult = Result<MZStatus, MZError>;Expand description
Result alias for all miniz status codes both successful and failed.
Aliased Type§
pub enum MZResult {
Ok(MZStatus),
Err(MZError),
}Variants§
Trait Implementations§
Source§impl From<&StreamResult> for MZResult
Available on non-crate feature rustc-dep-of-std only.
impl From<&StreamResult> for MZResult
Available on non-crate feature
rustc-dep-of-std only.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
Available on non-crate feature rustc-dep-of-std only.
impl From<StreamResult> for MZResult
Available on non-crate feature
rustc-dep-of-std only.Source§fn from(res: StreamResult) -> Self
fn from(res: StreamResult) -> Self
Converts to this type from the input type.