pub struct ChainInfo {
pub chain: String,
pub chain_type: String,
pub confirmation: String,
pub withdraw_fee: String,
pub deposit_min: String,
pub withdraw_min: String,
pub chain_deposit: String,
pub chain_withdraw: String,
}Expand description
Chain info.
Fields§
§chain: StringChain
chain_type: StringChain type
confirmation: StringConfirmation
withdraw_fee: StringWithdraw fee
deposit_min: StringDeposit min
withdraw_min: StringWithdraw min
chain_deposit: StringChain deposit enabled
chain_withdraw: StringChain withdraw enabled
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ChainInfo
impl<'de> Deserialize<'de> for ChainInfo
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 ChainInfo
impl RefUnwindSafe for ChainInfo
impl Send for ChainInfo
impl Sync for ChainInfo
impl Unpin for ChainInfo
impl UnsafeUnpin for ChainInfo
impl UnwindSafe for ChainInfo
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