pub struct WithdrawalAddress {
pub coin: String,
pub chain: String,
pub address: String,
pub tag: String,
pub remark: String,
pub status: i32,
pub address_type: i32,
pub verified: i32,
pub created_at: String,
}Expand description
Withdrawal address information
Fields§
§coin: StringCoin
chain: StringChain name
address: StringAddress
tag: StringAddress tag
remark: StringRemark
status: i32Address status:
0: Normal.
1: New Addresses are prohibited from withdrawing coins for 24 Hours.
address_type: i32Address type.
0: OnChain Address Type(Regular Address Type And Universal Address Type)
1: Internal Transfer Address Type.
2: Internal Transfer Address Type And OnChain Address Type
verified: i32Whether the address has been verified or not:
0: Unverified Address.
1: Verified Address.
created_at: StringAddress create time
Trait Implementations§
Source§impl Clone for WithdrawalAddress
impl Clone for WithdrawalAddress
Source§fn clone(&self) -> WithdrawalAddress
fn clone(&self) -> WithdrawalAddress
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 WithdrawalAddress
impl Debug for WithdrawalAddress
Source§impl<'de> Deserialize<'de> for WithdrawalAddress
impl<'de> Deserialize<'de> for WithdrawalAddress
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
Auto Trait Implementations§
impl Freeze for WithdrawalAddress
impl RefUnwindSafe for WithdrawalAddress
impl Send for WithdrawalAddress
impl Sync for WithdrawalAddress
impl Unpin for WithdrawalAddress
impl UnsafeUnpin for WithdrawalAddress
impl UnwindSafe for WithdrawalAddress
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