InternalEvent

Trait InternalEvent 

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

Required Methods§

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§

§

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

§

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

§

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