pub struct MaxTransferable {
pub currency: String,
pub amount: f64,
pub symbol: Option<String>,
pub timestamp: i64,
pub datetime: String,
pub info: Value,
}Expand description
Maximum transferable amount information.
Contains details about the maximum amount that can be transferred between accounts.
Fields§
§currency: StringCurrency code.
amount: f64Maximum transferable amount.
symbol: Option<String>Trading pair symbol (isolated margin only).
timestamp: i64Query timestamp in milliseconds.
datetime: StringISO 8601 datetime string.
info: ValueRaw exchange response data.
Trait Implementations§
Source§impl Clone for MaxTransferable
impl Clone for MaxTransferable
Source§fn clone(&self) -> MaxTransferable
fn clone(&self) -> MaxTransferable
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 MaxTransferable
impl Debug for MaxTransferable
Source§impl<'de> Deserialize<'de> for MaxTransferable
impl<'de> Deserialize<'de> for MaxTransferable
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MaxTransferable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MaxTransferable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MaxTransferable
impl Serialize for MaxTransferable
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for MaxTransferable
impl RefUnwindSafe for MaxTransferable
impl Send for MaxTransferable
impl Sync for MaxTransferable
impl Unpin for MaxTransferable
impl UnwindSafe for MaxTransferable
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