pub struct Asset {
pub symbol: String,
pub name: String,
pub decimals: u64,
pub deposit_fee: String,
pub deposit_confirmations: u64,
pub deposit_status: AssetStatus,
pub withdrawal_fee: String,
pub withdrawal_min_amount: String,
pub withdrawal_status: AssetStatus,
pub networks: Vec<String>,
pub message: Option<String>,
}
Expand description
Asset supported by Bitvavo.
Fields§
§symbol: String
§name: String
§decimals: u64
§deposit_fee: String
§deposit_confirmations: u64
§deposit_status: AssetStatus
§withdrawal_fee: String
§withdrawal_min_amount: String
§withdrawal_status: AssetStatus
§networks: Vec<String>
§message: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Asset
impl<'de> Deserialize<'de> for Asset
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 Asset
impl RefUnwindSafe for Asset
impl Send for Asset
impl Sync for Asset
impl Unpin for Asset
impl UnwindSafe for Asset
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