pub enum ListTransfersResponseTransfersItemStatus {
Pending,
Accepted,
Rejected,
Cancelled,
Expired,
}Expand description
ListTransfersResponseTransfersItemStatus
JSON schema
{
"type": "string",
"enum": [
"pending",
"accepted",
"rejected",
"cancelled",
"expired"
]
}Variants§
Trait Implementations§
Source§impl Clone for ListTransfersResponseTransfersItemStatus
impl Clone for ListTransfersResponseTransfersItemStatus
Source§fn clone(&self) -> ListTransfersResponseTransfersItemStatus
fn clone(&self) -> ListTransfersResponseTransfersItemStatus
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 ListTransfersResponseTransfersItemStatus
impl<'de> Deserialize<'de> for ListTransfersResponseTransfersItemStatus
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<&ListTransfersResponseTransfersItemStatus> for ListTransfersResponseTransfersItemStatus
impl From<&ListTransfersResponseTransfersItemStatus> for ListTransfersResponseTransfersItemStatus
Source§fn from(value: &ListTransfersResponseTransfersItemStatus) -> Self
fn from(value: &ListTransfersResponseTransfersItemStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for ListTransfersResponseTransfersItemStatus
impl Ord for ListTransfersResponseTransfersItemStatus
Source§fn cmp(&self, other: &ListTransfersResponseTransfersItemStatus) -> Ordering
fn cmp(&self, other: &ListTransfersResponseTransfersItemStatus) -> 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 ListTransfersResponseTransfersItemStatus
impl PartialEq for ListTransfersResponseTransfersItemStatus
Source§fn eq(&self, other: &ListTransfersResponseTransfersItemStatus) -> bool
fn eq(&self, other: &ListTransfersResponseTransfersItemStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ListTransfersResponseTransfersItemStatus
impl PartialOrd for ListTransfersResponseTransfersItemStatus
Source§impl TryFrom<&String> for ListTransfersResponseTransfersItemStatus
impl TryFrom<&String> for ListTransfersResponseTransfersItemStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ListTransfersResponseTransfersItemStatus
impl TryFrom<&str> for ListTransfersResponseTransfersItemStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ListTransfersResponseTransfersItemStatus
impl TryFrom<String> for ListTransfersResponseTransfersItemStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for ListTransfersResponseTransfersItemStatus
impl Eq for ListTransfersResponseTransfersItemStatus
impl StructuralPartialEq for ListTransfersResponseTransfersItemStatus
Auto Trait Implementations§
impl Freeze for ListTransfersResponseTransfersItemStatus
impl RefUnwindSafe for ListTransfersResponseTransfersItemStatus
impl Send for ListTransfersResponseTransfersItemStatus
impl Sync for ListTransfersResponseTransfersItemStatus
impl Unpin for ListTransfersResponseTransfersItemStatus
impl UnsafeUnpin for ListTransfersResponseTransfersItemStatus
impl UnwindSafe for ListTransfersResponseTransfersItemStatus
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