pub struct DepositAddressChainInfo {
pub chain_type: String,
pub address_deposit: String,
pub tag_deposit: String,
pub chain: String,
pub batch_release_limit: String,
pub contract_address: String,
}Expand description
Deposit address chain information
Fields§
§chain_type: StringChain type
address_deposit: StringThe address for deposit
tag_deposit: StringTag of deposit
chain: StringChain
batch_release_limit: StringThe deposit limit for this coin in this chain. "-1" means no limit
contract_address: StringThe contract address of the coin. Only display last 6 characters, if there is no contract address, it shows ""
Trait Implementations§
Source§impl Clone for DepositAddressChainInfo
impl Clone for DepositAddressChainInfo
Source§fn clone(&self) -> DepositAddressChainInfo
fn clone(&self) -> DepositAddressChainInfo
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 DepositAddressChainInfo
impl Debug for DepositAddressChainInfo
Source§impl<'de> Deserialize<'de> for DepositAddressChainInfo
impl<'de> Deserialize<'de> for DepositAddressChainInfo
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 DepositAddressChainInfo
impl RefUnwindSafe for DepositAddressChainInfo
impl Send for DepositAddressChainInfo
impl Sync for DepositAddressChainInfo
impl Unpin for DepositAddressChainInfo
impl UnsafeUnpin for DepositAddressChainInfo
impl UnwindSafe for DepositAddressChainInfo
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