pub trait MatrixMessageExt {
    fn send_notice<'life0, 'async_trait>(
        &'life0 mut self,
        body: String,
        formatted_body: Option<String>
    ) -> Pin<Box<dyn Future<Output = Result<(), SendError<AnyMessageEventContent>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

An extension to simply do notices

Required methods

Implementors