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: Stringtx_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
sourceimpl Clone for RecordsQuery
impl Clone for RecordsQuery
sourcefn clone(&self) -> RecordsQuery
fn clone(&self) -> RecordsQuery
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RecordsQuery
impl Debug for RecordsQuery
sourceimpl Default for RecordsQuery
impl Default for RecordsQuery
sourcefn default() -> RecordsQuery
fn default() -> RecordsQuery
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RecordsQuery
impl<'de> Deserialize<'de> for RecordsQuery
sourcefn 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
sourceimpl Serialize for RecordsQuery
impl Serialize for RecordsQuery
Auto Trait Implementations
impl RefUnwindSafe for RecordsQuery
impl Send for RecordsQuery
impl Sync for RecordsQuery
impl Unpin for RecordsQuery
impl UnwindSafe for RecordsQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more