pub struct TraceFilterBuilder { /* private fields */ }
Expand description
Trace Filter Builder
Implementations§
Source§impl TraceFilterBuilder
impl TraceFilterBuilder
Sourcepub fn from_block(self, block: BlockNumber) -> Self
pub fn from_block(self, block: BlockNumber) -> Self
Sets From block
Sourcepub fn to_block(self, block: BlockNumber) -> Self
pub fn to_block(self, block: BlockNumber) -> Self
Sets to block
Sourcepub fn to_address(self, address: Vec<H160>) -> Self
pub fn to_address(self, address: Vec<H160>) -> Self
Sets to address
Sourcepub fn from_address(self, address: Vec<H160>) -> Self
pub fn from_address(self, address: Vec<H160>) -> Self
Sets from address
Sourcepub fn build(&self) -> TraceFilter
pub fn build(&self) -> TraceFilter
Builds the Filter
Trait Implementations§
Source§impl Clone for TraceFilterBuilder
impl Clone for TraceFilterBuilder
Source§fn clone(&self) -> TraceFilterBuilder
fn clone(&self) -> TraceFilterBuilder
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 moreSource§impl Debug for TraceFilterBuilder
impl Debug for TraceFilterBuilder
Source§impl Default for TraceFilterBuilder
impl Default for TraceFilterBuilder
Source§fn default() -> TraceFilterBuilder
fn default() -> TraceFilterBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for TraceFilterBuilder
impl PartialEq for TraceFilterBuilder
impl StructuralPartialEq for TraceFilterBuilder
Auto Trait Implementations§
impl Freeze for TraceFilterBuilder
impl RefUnwindSafe for TraceFilterBuilder
impl Send for TraceFilterBuilder
impl Sync for TraceFilterBuilder
impl Unpin for TraceFilterBuilder
impl UnwindSafe for TraceFilterBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more