pub struct TransfersQuery<'a> {
pub base: Option<&'a [&'a str]>,
pub flow: Option<&'a str>,
pub usd_gte: Option<&'a str>,
pub sort_key: Option<&'a str>,
pub sort_dir: Option<&'a str>,
pub limit: Option<u32>,
pub offset: Option<u32>,
}Expand description
Filter parameters for the /transfers endpoint. Only the fields callers
actually populate get serialized into the query string. All optional.
Fields§
§base: Option<&'a [&'a str]>base= repeats per address; ["user"] returns flow involving the
caller’s saved addresses (requires identity).
flow: Option<&'a str>flow=in / out / all. Server defaults if omitted.
usd_gte: Option<&'a str>Lower-bound USD value (inclusive). Common: "1" to filter dust.
sort_key: Option<&'a str>time / usd / etc. — see OpenAPI TransferSortKey.
sort_dir: Option<&'a str>asc / desc.
limit: Option<u32>§offset: Option<u32>Trait Implementations§
Source§impl<'a> Clone for TransfersQuery<'a>
impl<'a> Clone for TransfersQuery<'a>
Source§fn clone(&self) -> TransfersQuery<'a>
fn clone(&self) -> TransfersQuery<'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 TransfersQuery<'a>
impl<'a> Debug for TransfersQuery<'a>
Source§impl<'a> Default for TransfersQuery<'a>
impl<'a> Default for TransfersQuery<'a>
Source§fn default() -> TransfersQuery<'a>
fn default() -> TransfersQuery<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for TransfersQuery<'a>
impl<'a> RefUnwindSafe for TransfersQuery<'a>
impl<'a> Send for TransfersQuery<'a>
impl<'a> Sync for TransfersQuery<'a>
impl<'a> Unpin for TransfersQuery<'a>
impl<'a> UnsafeUnpin for TransfersQuery<'a>
impl<'a> UnwindSafe for TransfersQuery<'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