pub struct ConvertHistoryRequest<'a> { /* private fields */ }Expand description
Query parameters for Convert::get_convert_history.
Implementations§
Source§impl<'a> ConvertHistoryRequest<'a>
impl<'a> ConvertHistoryRequest<'a>
Sourcepub fn client_trade_request_id(self, id: impl Into<Cow<'a, str>>) -> Self
pub fn client_trade_request_id(self, id: impl Into<Cow<'a, str>>) -> Self
Filter by the client trade request ID (clTReqId).
Sourcepub fn after(self, timestamp_ms: u64) -> Self
pub fn after(self, timestamp_ms: u64) -> Self
Return records earlier than this millisecond timestamp.
Sourcepub fn before(self, timestamp_ms: u64) -> Self
pub fn before(self, timestamp_ms: u64) -> Self
Return records newer than this millisecond timestamp.
Trait Implementations§
Source§impl<'a> Clone for ConvertHistoryRequest<'a>
impl<'a> Clone for ConvertHistoryRequest<'a>
Source§fn clone(&self) -> ConvertHistoryRequest<'a>
fn clone(&self) -> ConvertHistoryRequest<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ConvertHistoryRequest<'a>
impl<'a> Debug for ConvertHistoryRequest<'a>
Source§impl<'a> Default for ConvertHistoryRequest<'a>
impl<'a> Default for ConvertHistoryRequest<'a>
Source§fn default() -> ConvertHistoryRequest<'a>
fn default() -> ConvertHistoryRequest<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ConvertHistoryRequest<'a>
impl<'a> RefUnwindSafe for ConvertHistoryRequest<'a>
impl<'a> Send for ConvertHistoryRequest<'a>
impl<'a> Sync for ConvertHistoryRequest<'a>
impl<'a> Unpin for ConvertHistoryRequest<'a>
impl<'a> UnsafeUnpin for ConvertHistoryRequest<'a>
impl<'a> UnwindSafe for ConvertHistoryRequest<'a>
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