pub struct XZRawError {
pub code: xz_ret,
}Expand description
A wrapper around xz_ret
Fields§
§code: xz_retTrait Implementations§
Source§impl Debug for XZRawError
impl Debug for XZRawError
Source§impl Display for XZRawError
impl Display for XZRawError
Source§impl Error for XZRawError
impl Error for XZRawError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
Source§impl From<xz_ret> for XZRawError
impl From<xz_ret> for XZRawError
Source§fn from(e: xz_ret) -> XZRawError
fn from(e: xz_ret) -> XZRawError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for XZRawError
impl RefUnwindSafe for XZRawError
impl Send for XZRawError
impl Sync for XZRawError
impl Unpin for XZRawError
impl UnwindSafe for XZRawError
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