pub struct PreflateError { /* private fields */ }
Expand description
Standard error returned by Preflate library
Implementations§
Trait Implementations§
Source§impl Clone for PreflateError
impl Clone for PreflateError
Source§fn clone(&self) -> PreflateError
fn clone(&self) -> PreflateError
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 PreflateError
don’t show internal indirrection in debug output
impl Debug for PreflateError
don’t show internal indirrection in debug output
Source§impl Display for PreflateError
impl Display for PreflateError
Source§impl Error for PreflateError
impl Error for PreflateError
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for PreflateError
translates std::io::Error into PreflateError
impl From<Error> for PreflateError
translates std::io::Error into PreflateError
Source§impl From<PreflateError> for Error
translates PreflateError into std::io::Error, which involves putting into a Box and using Other
impl From<PreflateError> for Error
translates PreflateError into std::io::Error, which involves putting into a Box and using Other
Source§fn from(e: PreflateError) -> Self
fn from(e: PreflateError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for PreflateError
impl From<TryFromIntError> for PreflateError
Source§fn from(e: TryFromIntError) -> Self
fn from(e: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PreflateError
impl RefUnwindSafe for PreflateError
impl Send for PreflateError
impl Sync for PreflateError
impl Unpin for PreflateError
impl UnwindSafe for PreflateError
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