pub struct BindingCalled {
pub name: String,
pub payload: String,
pub execution_context_id: ExecutionContextId,
}Expand description
Notification is issued every time when binding is called. EXPERIMENTAL: This feature is experimental and may change or be removed.
Fields§
§name: String§payload: String§execution_context_id: ExecutionContextIdIdentifier of the context where the call was made.
Implementations§
Trait Implementations§
Source§impl Clone for BindingCalled
impl Clone for BindingCalled
Source§fn clone(&self) -> BindingCalled
fn clone(&self) -> BindingCalled
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 Debug for BindingCalled
impl Debug for BindingCalled
Source§impl<'de> Deserialize<'de> for BindingCalled
impl<'de> Deserialize<'de> for BindingCalled
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 BindingCalled
impl RefUnwindSafe for BindingCalled
impl Send for BindingCalled
impl Sync for BindingCalled
impl Unpin for BindingCalled
impl UnsafeUnpin for BindingCalled
impl UnwindSafe for BindingCalled
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