InternalEvent

Trait InternalEvent 

Source
pub trait InternalEvent: NamedInternalEvent + Sized {
    // Required method
    fn emit(self);
}

Required Methods§

Source

fn emit(self)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<E: Debug> InternalEvent for CallError<E>

Source§

impl<E: Debug> InternalEvent for PollReadyError<E>

Source§

impl<const INTENTIONAL: bool> InternalEvent for ComponentEventsDropped<'_, INTENTIONAL>