Struct pool_sync::filter::LiquidityFilter::constructorCall
source · pub struct constructorCall {
pub pools: Vec<Address>,
pub dexes: Vec<Address>,
pub dexIsUniV3: Vec<bool>,
pub weth: Address,
pub wethInPoolThreshold: U256,
}Expand description
Constructor`.
constructor(address[] pools, address[] dexes, bool[] dexIsUniV3, address weth, uint256 wethInPoolThreshold);
Fields§
§pools: Vec<Address>§dexes: Vec<Address>§dexIsUniV3: Vec<bool>§weth: Address§wethInPoolThreshold: U256Trait Implementations§
source§impl Clone for constructorCall
impl Clone for constructorCall
source§fn clone(&self) -> constructorCall
fn clone(&self) -> constructorCall
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 constructorCall
impl Debug for constructorCall
source§impl SolConstructor for constructorCall
impl SolConstructor for constructorCall
§type Parameters<'a> = (Array<Address>, Array<Address>, Array<Bool>, Address, Uint<256>)
type Parameters<'a> = (Array<Address>, Array<Address>, Array<Bool>, Address, Uint<256>)
The underlying tuple type which represents this type’s arguments. Read more
§type Token<'a> = <<constructorCall as SolConstructor>::Parameters<'a> as SolType>::Token<'a>
type Token<'a> = <<constructorCall as SolConstructor>::Parameters<'a> as SolType>::Token<'a>
The arguments’ corresponding TokenSeq type.
source§fn new<'a>(tuple: <Self::Parameters<'a> as SolType>::RustType) -> Self
fn new<'a>(tuple: <Self::Parameters<'a> as SolType>::RustType) -> Self
Convert from the tuple type used for ABI encoding and decoding.
source§fn abi_encoded_size(&self) -> usize
fn abi_encoded_size(&self) -> usize
The size of the encoded data in bytes.
Auto Trait Implementations§
impl Freeze for constructorCall
impl RefUnwindSafe for constructorCall
impl Send for constructorCall
impl Sync for constructorCall
impl Unpin for constructorCall
impl UnwindSafe for constructorCall
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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