pub struct DeploySubscription {
pub deploy_hash: String,
pub event_handler_fn: EventHandlerFn,
}
Expand description
Represents a subscription to deploy events for non-wasm32 target architecture.
Fields§
§deploy_hash: String
Deploy hash to identify the subscription.
event_handler_fn: EventHandlerFn
Handler function for deploy events.
Implementations§
source§impl DeploySubscription
impl DeploySubscription
sourcepub fn new(deploy_hash: String, event_handler_fn: EventHandlerFn) -> Self
pub fn new(deploy_hash: String, event_handler_fn: EventHandlerFn) -> Self
Constructor for DeploySubscription for non-wasm32 target architecture.
§Arguments
deploy_hash
- Deploy hash to identify the subscription.event_handler_fn
- Handler function for deploy events.
Trait Implementations§
source§impl Clone for DeploySubscription
impl Clone for DeploySubscription
source§fn clone(&self) -> DeploySubscription
fn clone(&self) -> DeploySubscription
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 DeploySubscription
impl Debug for DeploySubscription
source§impl Default for DeploySubscription
impl Default for DeploySubscription
source§fn default() -> DeploySubscription
fn default() -> DeploySubscription
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeploySubscription
impl RefUnwindSafe for DeploySubscription
impl Send for DeploySubscription
impl Sync for DeploySubscription
impl Unpin for DeploySubscription
impl UnwindSafe for DeploySubscription
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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