Struct zenith_types::Transactor::constructorCall
source · pub struct constructorCall {
pub _defaultRollupChainId: U256,
pub _gasAdmin: Address,
pub _passage: Address,
pub _perBlockGasLimit: U256,
pub _perTransactGasLimit: U256,
}Expand description
Constructor`.
constructor(uint256 _defaultRollupChainId, address _gasAdmin, address _passage, uint256 _perBlockGasLimit, uint256 _perTransactGasLimit);
Fields§
§_defaultRollupChainId: U256§_gasAdmin: Address§_passage: Address§_perBlockGasLimit: U256§_perTransactGasLimit: 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<'de> Deserialize<'de> for constructorCall
impl<'de> Deserialize<'de> for constructorCall
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for constructorCall
impl PartialEq for constructorCall
source§fn eq(&self, other: &constructorCall) -> bool
fn eq(&self, other: &constructorCall) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for constructorCall
impl Serialize for constructorCall
source§impl SolConstructor for constructorCall
impl SolConstructor for constructorCall
§type Parameters<'a> = (Uint<256>, Address, Address, Uint<256>, Uint<256>)
type Parameters<'a> = (Uint<256>, Address, Address, Uint<256>, 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.
impl Eq for constructorCall
impl StructuralPartialEq for constructorCall
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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