pub struct ReleaseEventInterestParams {
pub handle: String,
}Expand description
Opaque handle previously returned by registerInterest to release.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§handle: StringHandle returned by a previous registerInterest call. Idempotent: releasing an unknown or already-released handle is a no-op (returns success). When the last outstanding handle for an event type is released, the runtime reverts to its ‘no consumer’ code path for that event type.
Trait Implementations§
Source§impl Clone for ReleaseEventInterestParams
impl Clone for ReleaseEventInterestParams
Source§fn clone(&self) -> ReleaseEventInterestParams
fn clone(&self) -> ReleaseEventInterestParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReleaseEventInterestParams
impl Debug for ReleaseEventInterestParams
Source§impl Default for ReleaseEventInterestParams
impl Default for ReleaseEventInterestParams
Source§fn default() -> ReleaseEventInterestParams
fn default() -> ReleaseEventInterestParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseEventInterestParams
impl<'de> Deserialize<'de> for ReleaseEventInterestParams
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
Auto Trait Implementations§
impl Freeze for ReleaseEventInterestParams
impl RefUnwindSafe for ReleaseEventInterestParams
impl Send for ReleaseEventInterestParams
impl Sync for ReleaseEventInterestParams
impl Unpin for ReleaseEventInterestParams
impl UnsafeUnpin for ReleaseEventInterestParams
impl UnwindSafe for ReleaseEventInterestParams
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