pub enum ParseNsecError {
ShortField,
BadNextName(DnameError),
BadRtypeBitmap,
}Variants§
Trait Implementations§
Source§impl Clone for ParseNsecError
impl Clone for ParseNsecError
Source§fn clone(&self) -> ParseNsecError
fn clone(&self) -> ParseNsecError
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 ParseNsecError
impl Debug for ParseNsecError
Source§impl Display for ParseNsecError
impl Display for ParseNsecError
Source§impl Fail for ParseNsecError
impl Fail for ParseNsecError
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<DnameParseError> for ParseNsecError
impl From<DnameParseError> for ParseNsecError
Source§fn from(err: DnameParseError) -> Self
fn from(err: DnameParseError) -> Self
Converts to this type from the input type.
Source§impl From<RtypeBitmapError> for ParseNsecError
impl From<RtypeBitmapError> for ParseNsecError
Source§fn from(err: RtypeBitmapError) -> Self
fn from(err: RtypeBitmapError) -> Self
Converts to this type from the input type.
Source§impl From<ShortBuf> for ParseNsecError
impl From<ShortBuf> for ParseNsecError
Source§impl PartialEq for ParseNsecError
impl PartialEq for ParseNsecError
impl Copy for ParseNsecError
impl Eq for ParseNsecError
impl StructuralPartialEq for ParseNsecError
Auto Trait Implementations§
impl Freeze for ParseNsecError
impl RefUnwindSafe for ParseNsecError
impl Send for ParseNsecError
impl Sync for ParseNsecError
impl Unpin for ParseNsecError
impl UnwindSafe for ParseNsecError
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