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.

Object Safety§

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§