ruma_events

Trait RawExt

Source
pub trait RawExt<T: EventContentFromType> {
    // Required method
    fn deserialize_with_type(&self, event_type: T::EventType) -> Result<T>;
}
Expand description

Extension trait for [Raw<T>].

Required Methods§

Source

fn deserialize_with_type(&self, event_type: T::EventType) -> Result<T>

Try to deserialize the JSON as an event’s content with the given event type.

Implementations on Foreign Types§

Source§

impl<T> RawExt<T> for Raw<T>

Source§

fn deserialize_with_type(&self, event_type: T::EventType) -> Result<T>

Implementors§