pub struct CoinbaseOnRampEthereumAddress {
pub address: String,
pub blockchains: Vec<CoinbaseBlockchain>,
}Expand description
An Ethereum address with supported blockchains for Coinbase on-ramp.
JSON schema
{
"title": "CoinbaseOnRampEthereumAddress",
"description": "An Ethereum address with supported blockchains for
Coinbase on-ramp.",
"type": "object",
"required": [
"address",
"blockchains"
],
"properties": {
"address": {
"type": "string"
},
"blockchains": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoinbaseBlockchain"
}
}
},
"x-stainless-model": "funding.coinbase_on_ramp_ethereum_address"
}Fields§
§address: String§blockchains: Vec<CoinbaseBlockchain>Trait Implementations§
Source§impl Clone for CoinbaseOnRampEthereumAddress
impl Clone for CoinbaseOnRampEthereumAddress
Source§fn clone(&self) -> CoinbaseOnRampEthereumAddress
fn clone(&self) -> CoinbaseOnRampEthereumAddress
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<'de> Deserialize<'de> for CoinbaseOnRampEthereumAddress
impl<'de> Deserialize<'de> for CoinbaseOnRampEthereumAddress
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<&CoinbaseOnRampEthereumAddress> for CoinbaseOnRampEthereumAddress
impl From<&CoinbaseOnRampEthereumAddress> for CoinbaseOnRampEthereumAddress
Source§fn from(value: &CoinbaseOnRampEthereumAddress) -> Self
fn from(value: &CoinbaseOnRampEthereumAddress) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CoinbaseOnRampEthereumAddress
impl RefUnwindSafe for CoinbaseOnRampEthereumAddress
impl Send for CoinbaseOnRampEthereumAddress
impl Sync for CoinbaseOnRampEthereumAddress
impl Unpin for CoinbaseOnRampEthereumAddress
impl UnsafeUnpin for CoinbaseOnRampEthereumAddress
impl UnwindSafe for CoinbaseOnRampEthereumAddress
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