pub struct ExecutionContextDestroyedParams {
pub execution_context_unique_id: String,
}Expand description
Issued when execution context is destroyed. executionContextDestroyed
Fields§
§execution_context_unique_id: StringUnique Id of the destroyed context
Trait Implementations§
Source§impl Clone for ExecutionContextDestroyedParams
impl Clone for ExecutionContextDestroyedParams
Source§fn clone(&self) -> ExecutionContextDestroyedParams
fn clone(&self) -> ExecutionContextDestroyedParams
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<'de> Deserialize<'de> for ExecutionContextDestroyedParams
impl<'de> Deserialize<'de> for ExecutionContextDestroyedParams
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 ExecutionContextDestroyedParams
impl PartialEq for ExecutionContextDestroyedParams
Source§fn eq(&self, other: &ExecutionContextDestroyedParams) -> bool
fn eq(&self, other: &ExecutionContextDestroyedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionContextDestroyedParams
Auto Trait Implementations§
impl Freeze for ExecutionContextDestroyedParams
impl RefUnwindSafe for ExecutionContextDestroyedParams
impl Send for ExecutionContextDestroyedParams
impl Sync for ExecutionContextDestroyedParams
impl Unpin for ExecutionContextDestroyedParams
impl UnsafeUnpin for ExecutionContextDestroyedParams
impl UnwindSafe for ExecutionContextDestroyedParams
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