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