Struct ethers_etherscan::account::TxListParams
source · pub struct TxListParams {
pub start_block: u64,
pub end_block: u64,
pub page: u64,
pub offset: u64,
pub sort: Sort,
}
Expand description
Common optional arguments for the transaction or event list API endpoints
Fields§
§start_block: u64
§end_block: u64
§page: u64
§offset: u64
§sort: Sort
Implementations§
Trait Implementations§
source§impl Clone for TxListParams
impl Clone for TxListParams
source§fn clone(&self) -> TxListParams
fn clone(&self) -> TxListParams
Returns a copy 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 TxListParams
impl Debug for TxListParams
source§impl Default for TxListParams
impl Default for TxListParams
source§impl From<TxListParams> for HashMap<&'static str, String>
impl From<TxListParams> for HashMap<&'static str, String>
source§fn from(tx_params: TxListParams) -> Self
fn from(tx_params: TxListParams) -> Self
Converts to this type from the input type.
impl Copy for TxListParams
Auto Trait Implementations§
impl RefUnwindSafe for TxListParams
impl Send for TxListParams
impl Sync for TxListParams
impl Unpin for TxListParams
impl UnwindSafe for TxListParams
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