Struct binance::rest_model::DepositHistoryQuery
source · pub struct DepositHistoryQuery {
pub coin: Option<String>,
pub status: Option<u16>,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub limit: Option<u64>,
pub offset: Option<u64>,
}Fields§
§coin: Option<String>§status: Option<u16>0(0:pending,6: credited but cannot withdraw, 1:success)
start_time: Option<u64>Default: 90 days from current timestamp
end_time: Option<u64>Default: present timestamp
limit: Option<u64>Default:1000, Max:1000
offset: Option<u64>Default: present timestamp
Trait Implementations§
source§impl Clone for DepositHistoryQuery
impl Clone for DepositHistoryQuery
source§fn clone(&self) -> DepositHistoryQuery
fn clone(&self) -> DepositHistoryQuery
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 DepositHistoryQuery
impl Debug for DepositHistoryQuery
source§impl Default for DepositHistoryQuery
impl Default for DepositHistoryQuery
source§fn default() -> DepositHistoryQuery
fn default() -> DepositHistoryQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DepositHistoryQuery
impl<'de> Deserialize<'de> for DepositHistoryQuery
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 RefUnwindSafe for DepositHistoryQuery
impl Send for DepositHistoryQuery
impl Sync for DepositHistoryQuery
impl Unpin for DepositHistoryQuery
impl UnwindSafe for DepositHistoryQuery
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