matrix_sdk::event_handler

Trait EventHandlerResult

Source
pub trait EventHandlerResult: Sized { }
Expand description

Return types supported for event handlers implement this trait.

It is not meant to be implemented outside of matrix-sdk.

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 EventHandlerResult for ()

Source§

impl<E: Debug + Display + 'static> EventHandlerResult for Result<(), E>

Implementors§