pub struct GetActivities<'a> { /* private fields */ }Expand description
Builder for Client::get_activities
Implementations§
Source§impl<'a> GetActivities<'a>
impl<'a> GetActivities<'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<GetActivitiesDirection>,
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<GetActivitiesType>,
pub fn wallet_address<V>(self, value: V) -> Self
Trait Implementations§
Source§impl<'a> Clone for GetActivities<'a>
impl<'a> Clone for GetActivities<'a>
Source§fn clone(&self) -> GetActivities<'a>
fn clone(&self) -> GetActivities<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for GetActivities<'a>
impl<'a> !RefUnwindSafe for GetActivities<'a>
impl<'a> Send for GetActivities<'a>
impl<'a> Sync for GetActivities<'a>
impl<'a> Unpin for GetActivities<'a>
impl<'a> !UnwindSafe for GetActivities<'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