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<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<&InitiateUserFiatOfframpBodySource> for InitiateUserFiatOfframpBodySource
impl From<&InitiateUserFiatOfframpBodySource> for InitiateUserFiatOfframpBodySource
Source§fn from(value: &InitiateUserFiatOfframpBodySource) -> Self
fn from(value: &InitiateUserFiatOfframpBodySource) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InitiateUserFiatOfframpBodySource
impl RefUnwindSafe for InitiateUserFiatOfframpBodySource
impl Send for InitiateUserFiatOfframpBodySource
impl Sync for InitiateUserFiatOfframpBodySource
impl Unpin for InitiateUserFiatOfframpBodySource
impl UnsafeUnpin 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