pub enum TxtError {
Network(Error),
DomainTooLong(LongChainError),
ParseError(ParseError),
NotUtf8Error(FromUtf8Error),
BadTxt,
}
Expand description
Error returned by find_context_path_via_txt_records
.
Variants§
Network(Error)
DomainTooLong(LongChainError)
ParseError(ParseError)
NotUtf8Error(FromUtf8Error)
BadTxt
Trait Implementations§
source§impl Error for TxtError
impl Error for TxtError
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<FromUtf8Error> for TxtError
impl From<FromUtf8Error> for TxtError
source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
source§impl From<LongChainError> for TxtError
impl From<LongChainError> for TxtError
source§fn from(source: LongChainError) -> Self
fn from(source: LongChainError) -> Self
Converts to this type from the input type.
source§impl From<ParseError> for TxtError
impl From<ParseError> for TxtError
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TxtError
impl !RefUnwindSafe for TxtError
impl Send for TxtError
impl Sync for TxtError
impl Unpin for TxtError
impl !UnwindSafe for TxtError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.