Enum coinbase::transactions::TransactionType[][src]

pub enum TransactionType {
    Send,
    Request,
    Transfer,
    Buy,
    Sell,
    FiatDeposit,
    FiatWithdrawal,
    ExchangeDeposit,
    ExchangeWithdrawal,
    VaultWithdrawal,
    ProDeposit,
    ProWithdrawal,
    InflationReward,
}

Variants

Send

Sent bitcoin/bitcoin cash/litecoin/ethereum to a bitcoin/bitcoin cash/litecoin/ethereum address or email

Request

Requested bitcoin/bitcoin cash/litecoin/ethereum from a user or email

Transfer

Transfered funds between two of a user’s accounts

Buy

Bought bitcoin, bitcoin cash, litecoin or ethereum

Sell

Sold bitcoin, bitcoin cash, litecoin or ethereum

FiatDeposit

Deposited funds into a fiat account from a financial institution

FiatWithdrawal

Withdrew funds from a fiat account

ExchangeDeposit

Deposited money into Coinbase Pro

ExchangeWithdrawal

Withdrew money from Coinbase Pro

VaultWithdrawal

Withdrew funds from a vault account

ProDeposit

Deposited money into Coinbase Pro

ProWithdrawal

Withdrew money from Coinbase Pro

InflationReward

Trait Implementations

impl Clone for TransactionType[src]

impl Debug for TransactionType[src]

impl<'de> Deserialize<'de> for TransactionType[src]

impl Serialize for TransactionType[src]

Auto Trait Implementations

impl RefUnwindSafe for TransactionType[src]

impl Send for TransactionType[src]

impl Sync for TransactionType[src]

impl Unpin for TransactionType[src]

impl UnwindSafe for TransactionType[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.