pub enum AddressResultErrorCode {
InvalidAddress,
UnknownErrorCode,
}
Expand description
Return codes within the AddressResult object, specifying the status of a specific recipient.
Variants§
Trait Implementations§
Source§impl Debug for AddressResultErrorCode
impl Debug for AddressResultErrorCode
Source§impl<'de> Deserialize<'de> for AddressResultErrorCode
impl<'de> Deserialize<'de> for AddressResultErrorCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AddressResultErrorCode
impl Display for AddressResultErrorCode
Source§impl Fail for AddressResultErrorCode
impl Fail for AddressResultErrorCode
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 PartialEq for AddressResultErrorCode
impl PartialEq for AddressResultErrorCode
impl StructuralPartialEq for AddressResultErrorCode
Auto Trait Implementations§
impl Freeze for AddressResultErrorCode
impl RefUnwindSafe for AddressResultErrorCode
impl Send for AddressResultErrorCode
impl Sync for AddressResultErrorCode
impl Unpin for AddressResultErrorCode
impl UnwindSafe for AddressResultErrorCode
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more