Struct alloy_zksync::provider::layers::anvil_zksync::AnvilZKsyncLayer
source · pub struct AnvilZKsyncLayer { /* private fields */ }
Expand description
A layer that wraps an AnvilZKsync
config.
The config will be used to spawn an AnvilZKsyncInstance
when the layer is applied, or when the
user requests any information about the anvil node (e.g. via the AnvilZKsyncLayer::endpoint_url
method).
Implementations§
source§impl AnvilZKsyncLayer
impl AnvilZKsyncLayer
sourcepub fn instance(&self) -> &Arc<AnvilZKsyncInstance>
pub fn instance(&self) -> &Arc<AnvilZKsyncInstance>
Starts the anvil instance, or gets a reference to the existing instance.
sourcepub fn endpoint_url(&self) -> Url
pub fn endpoint_url(&self) -> Url
Get the instance http endpoint.
Trait Implementations§
source§impl Clone for AnvilZKsyncLayer
impl Clone for AnvilZKsyncLayer
source§fn clone(&self) -> AnvilZKsyncLayer
fn clone(&self) -> AnvilZKsyncLayer
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 AnvilZKsyncLayer
impl Debug for AnvilZKsyncLayer
source§impl Default for AnvilZKsyncLayer
impl Default for AnvilZKsyncLayer
source§fn default() -> AnvilZKsyncLayer
fn default() -> AnvilZKsyncLayer
Returns the “default value” for a type. Read more
source§impl From<AnvilZKsync> for AnvilZKsyncLayer
impl From<AnvilZKsync> for AnvilZKsyncLayer
source§fn from(anvil: AnvilZKsync) -> Self
fn from(anvil: AnvilZKsync) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for AnvilZKsyncLayer
impl RefUnwindSafe for AnvilZKsyncLayer
impl Send for AnvilZKsyncLayer
impl Sync for AnvilZKsyncLayer
impl Unpin for AnvilZKsyncLayer
impl UnwindSafe for AnvilZKsyncLayer
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
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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