pub struct WalletList {
pub list: Vec<WalletData>,
}Expand description
Summarizes wallet balance data for an account.
Part of the WalletResponse, this struct contains a list of wallet data entries for different account types or currencies. Bots use this to monitor overall account health and margin availability.
Fields§
§list: Vec<WalletData>A list of wallet data entries.
Contains detailed balance and margin information for each account type or currency. Bots use this to calculate available margin and manage risk across assets.
Trait Implementations§
Source§impl Clone for WalletList
impl Clone for WalletList
Source§fn clone(&self) -> WalletList
fn clone(&self) -> WalletList
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 WalletList
impl Debug for WalletList
Source§impl<'de> Deserialize<'de> for WalletList
impl<'de> Deserialize<'de> for WalletList
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 WalletList
impl RefUnwindSafe for WalletList
impl Send for WalletList
impl Sync for WalletList
impl Unpin for WalletList
impl UnsafeUnpin for WalletList
impl UnwindSafe for WalletList
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