pub struct OriginalMinimalStateEvent<C>where
    C: StateEventContent,{
    pub content: C,
    pub event_id: Option<OwnedEventId>,
}Expand description
An unredacted minimal state event.
For more details see MinimalStateEvent.
Fields
content: CThe event’s content.
event_id: Option<OwnedEventId>The event’s ID, if known.
Trait Implementations
sourceimpl<C: Clone> Clone for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
 
impl<C: Clone> Clone for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
sourcefn clone(&self) -> OriginalMinimalStateEvent<C>
 
fn clone(&self) -> OriginalMinimalStateEvent<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl<C: Debug> Debug for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
 
impl<C: Debug> Debug for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
sourceimpl<'de, C> Deserialize<'de> for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
    C: Deserialize<'de>,
 
impl<'de, C> Deserialize<'de> for OriginalMinimalStateEvent<C>where
    C: StateEventContent,
    C: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl<C> RefUnwindSafe for OriginalMinimalStateEvent<C>where
    C: RefUnwindSafe,
impl<C> Send for OriginalMinimalStateEvent<C>where
    C: Send,
impl<C> Sync for OriginalMinimalStateEvent<C>where
    C: Sync,
impl<C> Unpin for OriginalMinimalStateEvent<C>where
    C: Unpin,
impl<C> UnwindSafe for OriginalMinimalStateEvent<C>where
    C: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more