pub enum TransactionNetworkType {
Bitcoin,
Ethereum,
Litecoin,
XrpLedger,
Stellar,
Other,
}Expand description
Transaction network type enumeration
Variants§
Bitcoin
Bitcoin network
Ethereum
Ethereum network
Litecoin
Litecoin network
XrpLedger
XRP Ledger
Stellar
Stellar network
Other
Other network
Trait Implementations§
Source§impl Clone for TransactionNetworkType
impl Clone for TransactionNetworkType
Source§fn clone(&self) -> TransactionNetworkType
fn clone(&self) -> TransactionNetworkType
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 Debug for TransactionNetworkType
impl Debug for TransactionNetworkType
Source§impl<'de> Deserialize<'de> for TransactionNetworkType
impl<'de> Deserialize<'de> for TransactionNetworkType
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 TransactionNetworkType
impl Display for TransactionNetworkType
Source§impl PartialEq for TransactionNetworkType
impl PartialEq for TransactionNetworkType
Source§impl Serialize for TransactionNetworkType
impl Serialize for TransactionNetworkType
impl Copy for TransactionNetworkType
impl Eq for TransactionNetworkType
impl StructuralPartialEq for TransactionNetworkType
Auto Trait Implementations§
impl Freeze for TransactionNetworkType
impl RefUnwindSafe for TransactionNetworkType
impl Send for TransactionNetworkType
impl Sync for TransactionNetworkType
impl Unpin for TransactionNetworkType
impl UnwindSafe for TransactionNetworkType
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