pub struct InitiateUserFiatOfframpBodySource {
pub chain: InitiateUserFiatOfframpBodySourceChain,
pub currency: InitiateUserFiatOfframpBodySourceCurrency,
pub from_address: String,
}Expand description
InitiateUserFiatOfframpBodySource
JSON schema
{
"type": "object",
"required": [
"chain",
"currency",
"from_address"
],
"properties": {
"chain": {
"type": "string",
"enum": [
"arbitrum",
"base",
"ethereum",
"optimism",
"polygon"
]
},
"currency": {
"type": "string",
"enum": [
"usdc"
]
},
"from_address": {
"type": "string"
}
}
}Fields§
§chain: InitiateUserFiatOfframpBodySourceChain§currency: InitiateUserFiatOfframpBodySourceCurrency§from_address: StringTrait Implementations§
Source§impl Clone for InitiateUserFiatOfframpBodySource
impl Clone for InitiateUserFiatOfframpBodySource
Source§fn clone(&self) -> InitiateUserFiatOfframpBodySource
fn clone(&self) -> InitiateUserFiatOfframpBodySource
Returns a duplicate of the value. Read more
1.0.0 · 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 InitiateUserFiatOfframpBodySource
impl<'de> Deserialize<'de> for InitiateUserFiatOfframpBodySource
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InitiateUserFiatOfframpBodySource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InitiateUserFiatOfframpBodySource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&InitiateUserFiatOfframpBodySource> for InitiateUserFiatOfframpBodySource
impl From<&InitiateUserFiatOfframpBodySource> for InitiateUserFiatOfframpBodySource
Source§fn from(
value: &InitiateUserFiatOfframpBodySource,
) -> InitiateUserFiatOfframpBodySource
fn from( value: &InitiateUserFiatOfframpBodySource, ) -> InitiateUserFiatOfframpBodySource
Converts to this type from the input type.
Source§impl Serialize for InitiateUserFiatOfframpBodySource
impl Serialize for InitiateUserFiatOfframpBodySource
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for InitiateUserFiatOfframpBodySource
impl RefUnwindSafe for InitiateUserFiatOfframpBodySource
impl Send for InitiateUserFiatOfframpBodySource
impl Sync for InitiateUserFiatOfframpBodySource
impl Unpin for InitiateUserFiatOfframpBodySource
impl UnwindSafe for InitiateUserFiatOfframpBodySource
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