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