Trait vector_lib::internal_event::InternalEvent

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

    // Provided method
    fn name(&self) -> Option<&'static str> { ... }
}

Required Methods§

fn emit(self)

Provided Methods§

fn name(&self) -> Option<&'static str>

Object Safety§

This trait is not object safe.

Implementors§

§

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

§

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

§

impl<E> InternalEvent for DefaultName<E>
where E: InternalEvent,

§

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