pub struct BindingCalledEvent { /* private fields */ }Available on crate features
Runtime and experimental only.Expand description
Notification is issued every time when binding is called.
Implementations§
Source§impl BindingCalledEvent
impl BindingCalledEvent
pub fn new( name: String, payload: String, execution_context_id: ExecutionContextId, ) -> Self
pub fn name(&self) -> &str
pub fn payload(&self) -> &str
Sourcepub fn execution_context_id(&self) -> &ExecutionContextId
pub fn execution_context_id(&self) -> &ExecutionContextId
Identifier of the context where the call was made.
Trait Implementations§
Source§impl Clone for BindingCalledEvent
impl Clone for BindingCalledEvent
Source§fn clone(&self) -> BindingCalledEvent
fn clone(&self) -> BindingCalledEvent
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 BindingCalledEvent
impl Debug for BindingCalledEvent
Source§impl<'de> Deserialize<'de> for BindingCalledEvent
impl<'de> Deserialize<'de> for BindingCalledEvent
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 BindingCalledEvent
impl RefUnwindSafe for BindingCalledEvent
impl Send for BindingCalledEvent
impl Sync for BindingCalledEvent
impl Unpin for BindingCalledEvent
impl UnwindSafe for BindingCalledEvent
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