Struct binance::rest_model::RecordsQuery
source · pub struct RecordsQuery {
pub asset: String,
pub tx_id: Option<u64>,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub current: Option<u16>,
pub size: Option<u8>,
pub transfer_type: Option<TransferType>,
pub archived: Option<bool>,
pub is_isolated: Option<String>,
}Expand description
archived and is_isolated are only applicable to certain endpoints refer to Binance documentation for full disclosure
Fields§
§asset: String§tx_id: Option<u64>§start_time: Option<u64>§end_time: Option<u64>§current: Option<u16>§size: Option<u8>§transfer_type: Option<TransferType>§archived: Option<bool>§is_isolated: Option<String>“TRUE” or “FALSE”, default is “FALSE”
Trait Implementations§
source§impl Clone for RecordsQuery
impl Clone for RecordsQuery
source§fn clone(&self) -> RecordsQuery
fn clone(&self) -> RecordsQuery
Returns a copy 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 RecordsQuery
impl Debug for RecordsQuery
source§impl Default for RecordsQuery
impl Default for RecordsQuery
source§fn default() -> RecordsQuery
fn default() -> RecordsQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RecordsQuery
impl<'de> Deserialize<'de> for RecordsQuery
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