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.

Implementations on Foreign Types§

Source§

impl InternalEvent for DecoderDeserializeError<'_>

Source§

fn emit(self)

Source§

impl InternalEvent for EncoderFramingError<'_>

Source§

fn emit(self)

Source§

impl InternalEvent for EncoderNullConstraintError<'_>

Source§

fn emit(self)

Source§

impl InternalEvent for EncoderSerializeError<'_>

Source§

fn emit(self)

Source§

impl<E> InternalEvent for DecoderFramingError<E>
where E: Display,

Source§

fn emit(self)

Source§

impl<E> InternalEvent for EncoderRecordBatchError<'_, E>
where E: Display,

Source§

fn emit(self)

Source§

impl<E> InternalEvent for EncoderWriteError<'_, E>
where E: Display,

Source§

fn emit(self)

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>