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