pub enum ParseReplyError {
Status(ParseStatusError),
FailedToRead,
}
Variants§
Status(ParseStatusError)
FailedToRead
Trait Implementations§
Source§impl Debug for ParseReplyError
impl Debug for ParseReplyError
Source§impl Display for ParseReplyError
impl Display for ParseReplyError
Source§impl Error for ParseReplyError
impl Error for ParseReplyError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§impl From<ParseReplyError> for DICTError
impl From<ParseReplyError> for DICTError
Source§fn from(src: ParseReplyError) -> Self
fn from(src: ParseReplyError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseReplyError
impl RefUnwindSafe for ParseReplyError
impl Send for ParseReplyError
impl Sync for ParseReplyError
impl Unpin for ParseReplyError
impl UnwindSafe for ParseReplyError
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