Struct binance::rest_model::WithdrawalHistoryQuery
source · [−]pub struct WithdrawalHistoryQuery {
pub coin: Option<String>,
pub withdraw_order_id: 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>withdraw_order_id: Option<String>status: Option<u16>0(0:Email Sent,1:Cancelled 2:Awaiting Approval 3:Rejected 4:Processing 5:Failure 6:Completed)
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 WithdrawalHistoryQuery
impl Clone for WithdrawalHistoryQuery
sourcefn clone(&self) -> WithdrawalHistoryQuery
fn clone(&self) -> WithdrawalHistoryQuery
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 WithdrawalHistoryQuery
impl Debug for WithdrawalHistoryQuery
sourceimpl Default for WithdrawalHistoryQuery
impl Default for WithdrawalHistoryQuery
sourcefn default() -> WithdrawalHistoryQuery
fn default() -> WithdrawalHistoryQuery
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for WithdrawalHistoryQuery
impl<'de> Deserialize<'de> for WithdrawalHistoryQuery
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 WithdrawalHistoryQuery
impl Serialize for WithdrawalHistoryQuery
Auto Trait Implementations
impl RefUnwindSafe for WithdrawalHistoryQuery
impl Send for WithdrawalHistoryQuery
impl Sync for WithdrawalHistoryQuery
impl Unpin for WithdrawalHistoryQuery
impl UnwindSafe for WithdrawalHistoryQuery
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