pub struct GetTrades<'a> { /* private fields */ }Expand description
Builder for Client::get_trades
Implementations§
Source§impl<'a> GetTrades<'a>
impl<'a> GetTrades<'a>
pub fn new(client: &'a Client) -> Self
pub fn chain<V>(self, value: V) -> Selfwhere
V: TryInto<ChainSymbol>,
pub fn after_block_height<V>(self, value: V) -> Self
pub fn after_timestamp<V>(self, value: V) -> Self
pub fn before_block_height<V>(self, value: V) -> Self
pub fn before_timestamp<V>(self, value: V) -> Self
pub fn cursor<V>(self, value: V) -> Self
pub fn direction<V>(self, value: V) -> Selfwhere
V: TryInto<GetTradesDirection>,
pub fn limit<V>(self, value: V) -> Selfwhere
V: TryInto<NonZeroU64>,
pub fn pool_address<V>(self, value: V) -> Self
pub fn token_address<V>(self, value: V) -> Self
pub fn transactions_signature<V>(self, value: V) -> Self
pub fn type_<V>(self, value: V) -> Selfwhere
V: TryInto<GetTradesType>,
pub fn wallet_address<V>(self, value: V) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GetTrades<'a>
impl<'a> !RefUnwindSafe for GetTrades<'a>
impl<'a> Send for GetTrades<'a>
impl<'a> Sync for GetTrades<'a>
impl<'a> Unpin for GetTrades<'a>
impl<'a> !UnwindSafe for GetTrades<'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