pub enum RespondTransferResponseStatus {
Accepted,
Rejected,
Cancelled,
}Expand description
RespondTransferResponseStatus
JSON schema
{
"type": "string",
"enum": [
"accepted",
"rejected",
"cancelled"
]
}Variants§
Trait Implementations§
Source§impl Clone for RespondTransferResponseStatus
impl Clone for RespondTransferResponseStatus
Source§fn clone(&self) -> RespondTransferResponseStatus
fn clone(&self) -> RespondTransferResponseStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RespondTransferResponseStatus
impl<'de> Deserialize<'de> for RespondTransferResponseStatus
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 From<&RespondTransferResponseStatus> for RespondTransferResponseStatus
impl From<&RespondTransferResponseStatus> for RespondTransferResponseStatus
Source§fn from(value: &RespondTransferResponseStatus) -> Self
fn from(value: &RespondTransferResponseStatus) -> Self
Converts to this type from the input type.
Source§impl Hash for RespondTransferResponseStatus
impl Hash for RespondTransferResponseStatus
Source§impl Ord for RespondTransferResponseStatus
impl Ord for RespondTransferResponseStatus
Source§fn cmp(&self, other: &RespondTransferResponseStatus) -> Ordering
fn cmp(&self, other: &RespondTransferResponseStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RespondTransferResponseStatus
impl PartialEq for RespondTransferResponseStatus
Source§fn eq(&self, other: &RespondTransferResponseStatus) -> bool
fn eq(&self, other: &RespondTransferResponseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RespondTransferResponseStatus
impl PartialOrd for RespondTransferResponseStatus
Source§impl TryFrom<&String> for RespondTransferResponseStatus
impl TryFrom<&String> for RespondTransferResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for RespondTransferResponseStatus
impl TryFrom<&str> for RespondTransferResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for RespondTransferResponseStatus
impl TryFrom<String> for RespondTransferResponseStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for RespondTransferResponseStatus
impl Eq for RespondTransferResponseStatus
impl StructuralPartialEq for RespondTransferResponseStatus
Auto Trait Implementations§
impl Freeze for RespondTransferResponseStatus
impl RefUnwindSafe for RespondTransferResponseStatus
impl Send for RespondTransferResponseStatus
impl Sync for RespondTransferResponseStatus
impl Unpin for RespondTransferResponseStatus
impl UnsafeUnpin for RespondTransferResponseStatus
impl UnwindSafe for RespondTransferResponseStatus
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