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§
Source§impl Clone for WithdrawalHistoryQuery
impl Clone for WithdrawalHistoryQuery
Source§fn clone(&self) -> WithdrawalHistoryQuery
fn clone(&self) -> WithdrawalHistoryQuery
Returns a duplicate 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 WithdrawalHistoryQuery
impl Debug for WithdrawalHistoryQuery
Source§impl Default for WithdrawalHistoryQuery
impl Default for WithdrawalHistoryQuery
Source§fn default() -> WithdrawalHistoryQuery
fn default() -> WithdrawalHistoryQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WithdrawalHistoryQuery
impl<'de> Deserialize<'de> for WithdrawalHistoryQuery
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 Freeze for WithdrawalHistoryQuery
impl RefUnwindSafe for WithdrawalHistoryQuery
impl Send for WithdrawalHistoryQuery
impl Sync for WithdrawalHistoryQuery
impl Unpin for WithdrawalHistoryQuery
impl UnwindSafe for WithdrawalHistoryQuery
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