pub enum CoinbaseBlockchain {
Arbitrum,
Avacchain,
Base,
Bitcoin,
Ethereum,
Monad,
Optimism,
Polygon,
Solana,
Stellar,
}Expand description
A blockchain supported by Coinbase on-ramp.
JSON schema
{
"title": "CoinbaseBlockchain",
"description": "A blockchain supported by Coinbase on-ramp.",
"type": "string",
"enum": [
"arbitrum",
"avacchain",
"base",
"bitcoin",
"ethereum",
"monad",
"optimism",
"polygon",
"solana",
"stellar"
],
"x-stainless-model": "funding.coinbase_blockchain"
}Variants§
Trait Implementations§
Source§impl Clone for CoinbaseBlockchain
impl Clone for CoinbaseBlockchain
Source§fn clone(&self) -> CoinbaseBlockchain
fn clone(&self) -> CoinbaseBlockchain
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 CoinbaseBlockchain
Source§impl Debug for CoinbaseBlockchain
impl Debug for CoinbaseBlockchain
Source§impl<'de> Deserialize<'de> for CoinbaseBlockchain
impl<'de> Deserialize<'de> for CoinbaseBlockchain
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 CoinbaseBlockchain
impl Display for CoinbaseBlockchain
impl Eq for CoinbaseBlockchain
Source§impl From<&CoinbaseBlockchain> for CoinbaseBlockchain
impl From<&CoinbaseBlockchain> for CoinbaseBlockchain
Source§fn from(value: &CoinbaseBlockchain) -> Self
fn from(value: &CoinbaseBlockchain) -> Self
Converts to this type from the input type.
Source§impl FromStr for CoinbaseBlockchain
impl FromStr for CoinbaseBlockchain
Source§impl Hash for CoinbaseBlockchain
impl Hash for CoinbaseBlockchain
Source§impl Ord for CoinbaseBlockchain
impl Ord for CoinbaseBlockchain
Source§fn cmp(&self, other: &CoinbaseBlockchain) -> Ordering
fn cmp(&self, other: &CoinbaseBlockchain) -> 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 CoinbaseBlockchain
impl PartialEq for CoinbaseBlockchain
Source§fn eq(&self, other: &CoinbaseBlockchain) -> bool
fn eq(&self, other: &CoinbaseBlockchain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CoinbaseBlockchain
impl PartialOrd for CoinbaseBlockchain
Source§impl Serialize for CoinbaseBlockchain
impl Serialize for CoinbaseBlockchain
impl StructuralPartialEq for CoinbaseBlockchain
Source§impl TryFrom<&String> for CoinbaseBlockchain
impl TryFrom<&String> for CoinbaseBlockchain
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for CoinbaseBlockchain
impl TryFrom<&str> for CoinbaseBlockchain
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for CoinbaseBlockchain
impl TryFrom<String> for CoinbaseBlockchain
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for CoinbaseBlockchain
impl RefUnwindSafe for CoinbaseBlockchain
impl Send for CoinbaseBlockchain
impl Sync for CoinbaseBlockchain
impl Unpin for CoinbaseBlockchain
impl UnsafeUnpin for CoinbaseBlockchain
impl UnwindSafe for CoinbaseBlockchain
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