[][src]Struct web3::types::TraceFilterBuilder

pub struct TraceFilterBuilder { /* fields omitted */ }

Trace Filter Builder

Implementations

impl TraceFilterBuilder[src]

pub fn from_block(self, block: BlockNumber) -> Self[src]

Sets From block

pub fn to_block(self, block: BlockNumber) -> Self[src]

Sets to block

pub fn to_address(self, address: Vec<H160>) -> Self[src]

Sets to address

pub fn from_address(self, address: Vec<H160>) -> Self[src]

Sets from address

pub fn after(self, after: usize) -> Self[src]

Sets after offset

pub fn count(self, count: usize) -> Self[src]

Sets amount of traces to display

pub fn build(&self) -> TraceFilter[src]

Builds the Filter

Trait Implementations

impl Clone for TraceFilterBuilder[src]

impl Debug for TraceFilterBuilder[src]

impl Default for TraceFilterBuilder[src]

impl PartialEq<TraceFilterBuilder> for TraceFilterBuilder[src]

impl StructuralPartialEq for TraceFilterBuilder[src]

Auto Trait Implementations

impl RefUnwindSafe for TraceFilterBuilder

impl Send for TraceFilterBuilder

impl Sync for TraceFilterBuilder

impl Unpin for TraceFilterBuilder

impl UnwindSafe for TraceFilterBuilder

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,