pub enum ParsedDnameAllError {
Parse(ParsedDnameError),
TrailingData,
ShortField,
ShortBuf,
}Expand description
An error happened while parsing a compressed domain name.
Variants§
Trait Implementations§
Source§impl Clone for ParsedDnameAllError
impl Clone for ParsedDnameAllError
Source§fn clone(&self) -> ParsedDnameAllError
fn clone(&self) -> ParsedDnameAllError
Returns a duplicate 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 ParsedDnameAllError
impl Debug for ParsedDnameAllError
Source§impl Display for ParsedDnameAllError
impl Display for ParsedDnameAllError
Source§impl Fail for ParsedDnameAllError
impl Fail for ParsedDnameAllError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl From<ParseAllError> for ParsedDnameAllError
impl From<ParseAllError> for ParsedDnameAllError
Source§fn from(err: ParseAllError) -> Self
fn from(err: ParseAllError) -> Self
Converts to this type from the input type.
Source§impl From<ParseOpenError> for ParsedDnameAllError
impl From<ParseOpenError> for ParsedDnameAllError
Source§fn from(err: ParseOpenError) -> Self
fn from(err: ParseOpenError) -> Self
Converts to this type from the input type.
Source§impl From<ParsedDnameError> for ParsedDnameAllError
impl From<ParsedDnameError> for ParsedDnameAllError
Source§fn from(err: ParsedDnameError) -> Self
fn from(err: ParsedDnameError) -> Self
Converts to this type from the input type.
Source§impl From<ShortBuf> for ParsedDnameAllError
impl From<ShortBuf> for ParsedDnameAllError
Source§impl PartialEq for ParsedDnameAllError
impl PartialEq for ParsedDnameAllError
impl Copy for ParsedDnameAllError
impl Eq for ParsedDnameAllError
impl StructuralPartialEq for ParsedDnameAllError
Auto Trait Implementations§
impl Freeze for ParsedDnameAllError
impl RefUnwindSafe for ParsedDnameAllError
impl Send for ParsedDnameAllError
impl Sync for ParsedDnameAllError
impl Unpin for ParsedDnameAllError
impl UnwindSafe for ParsedDnameAllError
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