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
sourceimpl Clone for DepositHistoryQuery
impl Clone for DepositHistoryQuery
sourcefn clone(&self) -> DepositHistoryQuery
fn clone(&self) -> DepositHistoryQuery
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 DepositHistoryQuery
impl Debug for DepositHistoryQuery
sourceimpl Default for DepositHistoryQuery
impl Default for DepositHistoryQuery
sourcefn default() -> DepositHistoryQuery
fn default() -> DepositHistoryQuery
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DepositHistoryQuery
impl<'de> Deserialize<'de> for DepositHistoryQuery
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 DepositHistoryQuery
impl Serialize for DepositHistoryQuery
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
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