pub struct constructorCall {
pub _avsDirectory: Address,
pub _slashingRegCoordinator: Address,
pub _stakeRegistry: Address,
pub rewards_coordinator: Address,
pub _permissionController: Address,
pub _allocationManager: Address,
}
Expand description
Constructor`.
solidity constructor(address _avsDirectory, address _slashingRegCoordinator, address _stakeRegistry, address rewards_coordinator, address _permissionController, address _allocationManager);
Fields§
§_avsDirectory: Address
§_slashingRegCoordinator: Address
§_stakeRegistry: Address
§rewards_coordinator: Address
§_permissionController: Address
§_allocationManager: Address
Trait Implementations§
Source§impl Clone for constructorCall
impl Clone for constructorCall
Source§fn clone(&self) -> constructorCall
fn clone(&self) -> constructorCall
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 SolConstructor for constructorCall
impl SolConstructor for constructorCall
Source§type Parameters<'a> = (Address, Address, Address, Address, Address, Address)
type Parameters<'a> = (Address, Address, Address, Address, Address, Address)
The underlying tuple type which represents this type’s arguments. Read more
Source§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§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> 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 moreCreates a shared type from an unshared type.