pub enum Accounts {
All,
Brief,
}
Expand description
[Optional] To control the list of accounts returned when account_from
or account_to
is not provided. brief
(default value) means that accounts with mt5
account_type will be excluded; it will run faster. all
means that all accounts with any account_type (including mt5
) will be returned.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Accounts
impl<'de> Deserialize<'de> for Accounts
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 Accounts
impl RefUnwindSafe for Accounts
impl Send for Accounts
impl Sync for Accounts
impl Unpin for Accounts
impl UnwindSafe for Accounts
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