pub struct TransferStatusRequest {
pub asset: Option<String>,
pub aclass: Option<String>,
pub method: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
pub cursor: Option<Cursor>,
pub limit: Option<i64>,
}Expand description
Request for deposit or withdrawal status.
Fields§
§asset: Option<String>Asset (e.g., “XBT”, “ETH”).
aclass: Option<String>Asset class.
method: Option<String>Method name.
start: Option<String>Start time (unix timestamp).
end: Option<String>End time (unix timestamp).
cursor: Option<Cursor>Pagination cursor.
limit: Option<i64>Maximum number of records to return.
Trait Implementations§
Source§impl Clone for TransferStatusRequest
impl Clone for TransferStatusRequest
Source§fn clone(&self) -> TransferStatusRequest
fn clone(&self) -> TransferStatusRequest
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 TransferStatusRequest
impl Debug for TransferStatusRequest
Source§impl Default for TransferStatusRequest
impl Default for TransferStatusRequest
Source§fn default() -> TransferStatusRequest
fn default() -> TransferStatusRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TransferStatusRequest
impl RefUnwindSafe for TransferStatusRequest
impl Send for TransferStatusRequest
impl Sync for TransferStatusRequest
impl Unpin for TransferStatusRequest
impl UnwindSafe for TransferStatusRequest
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