[][src]Enum xtp::XTPFundTransferType

#[repr(u32)]
pub enum XTPFundTransferType {
    TransferOut,
    TransferIn,
    InterTransferOut,
    InterTransferIn,
    TransferUnknown,
}

资金流转方向类型

Variants

TransferOut

转出 从XTP转出到柜台

TransferIn

转入 从柜台转入XTP

InterTransferOut

跨节点转出 从本XTP节点1,转出到对端XTP节点2,XTP服务器之间划拨,只能跨账户用户使用

InterTransferIn

跨节点转入 从对端XTP节点2,转入到本XTP节点1,XTP服务器之间划拨,只能跨账户用户使用

TransferUnknown

未知类型

Trait Implementations

impl Clone for XTPFundTransferType[src]

impl Copy for XTPFundTransferType[src]

impl Debug for XTPFundTransferType[src]

impl Eq for XTPFundTransferType[src]

impl Hash for XTPFundTransferType[src]

impl PartialEq<XTPFundTransferType> for XTPFundTransferType[src]

impl StructuralEq for XTPFundTransferType[src]

impl StructuralPartialEq for XTPFundTransferType[src]

Auto Trait Implementations

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> From<T> for T[src]

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

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.