[][src]Struct ruma_events::EventJson

pub struct EventJson<T> { /* fields omitted */ }

A wrapper around Box<RawValue>, to be used in place of event [content] [collection] types in Matrix endpoint definition to allow request and response types to contain unknown events in addition to the known event(s) represented by the generic argument Ev.

Implementations

impl<T> EventJson<T>[src]

pub fn json(&self) -> &RawValue[src]

Access the underlying json value.

pub fn into_json(self) -> Box<RawValue>[src]

Convert self into the underlying json value.

impl<T: TryFromRaw> EventJson<T>[src]

pub fn deserialize(&self) -> Result<T, InvalidEvent>[src]

Try to deserialize the JSON into the expected event type.

Trait Implementations

impl<T> Clone for EventJson<T>[src]

impl<T> Debug for EventJson<T>[src]

impl<'de, T> Deserialize<'de> for EventJson<T>[src]

impl<'_, T: Serialize> From<&'_ T> for EventJson<T>[src]

impl<T> From<Box<RawValue>> for EventJson<T>[src]

impl<T: Serialize + TryFromRaw> From<T> for EventJson<T>[src]

impl<T> Serialize for EventJson<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for EventJson<T> where
    T: RefUnwindSafe

impl<T> Send for EventJson<T> where
    T: Send

impl<T> Sync for EventJson<T> where
    T: Sync

impl<T> Unpin for EventJson<T> where
    T: Unpin

impl<T> UnwindSafe for EventJson<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,