pub enum IntentIdentifierError {
AccountAddress(AccountAddressParseError),
Bech32(Error),
Parse(String),
Subaddress(SubaddressParseError),
Url(ParseError),
}
Variants§
AccountAddress(AccountAddressParseError)
Bech32(Error)
Parse(String)
Subaddress(SubaddressParseError)
Url(ParseError)
Trait Implementations§
source§impl Debug for IntentIdentifierError
impl Debug for IntentIdentifierError
source§impl Display for IntentIdentifierError
impl Display for IntentIdentifierError
source§impl Error for IntentIdentifierError
impl Error for IntentIdentifierError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<AccountAddressParseError> for IntentIdentifierError
impl From<AccountAddressParseError> for IntentIdentifierError
source§impl From<Error> for IntentIdentifierError
impl From<Error> for IntentIdentifierError
source§impl From<ParseError> for IntentIdentifierError
impl From<ParseError> for IntentIdentifierError
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
source§impl From<SubaddressParseError> for IntentIdentifierError
impl From<SubaddressParseError> for IntentIdentifierError
source§fn from(source: SubaddressParseError) -> Self
fn from(source: SubaddressParseError) -> Self
Converts to this type from the input type.