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