Trait RawExt

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

Extension trait for [Raw<T>].

Required Methods§

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

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

Implementations on Foreign Types§

§

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

§

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

Implementors§