pub enum AnySyncOrStrippedState {
Sync(AnySyncStateEvent),
Stripped(AnyStrippedStateEvent),
}
Expand description
Wrapper around both versions of any state event.
Variants§
Sync(AnySyncStateEvent)
An event from a room in joined or left state.
Stripped(AnyStrippedStateEvent)
An event from a room in invited state.
Implementations§
source§impl AnySyncOrStrippedState
impl AnySyncOrStrippedState
sourcepub fn as_sync(&self) -> Option<&AnySyncStateEvent>
pub fn as_sync(&self) -> Option<&AnySyncStateEvent>
If this is an AnySyncStateEvent
, return a reference to the inner
event.
sourcepub fn as_stripped(&self) -> Option<&AnyStrippedStateEvent>
pub fn as_stripped(&self) -> Option<&AnyStrippedStateEvent>
If this is an AnyStrippedStateEvent
, return a reference to the inner
event.
Trait Implementations§
source§impl Clone for AnySyncOrStrippedState
impl Clone for AnySyncOrStrippedState
source§fn clone(&self) -> AnySyncOrStrippedState
fn clone(&self) -> AnySyncOrStrippedState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for AnySyncOrStrippedState
impl Send for AnySyncOrStrippedState
impl Sync for AnySyncOrStrippedState
impl Unpin for AnySyncOrStrippedState
impl UnwindSafe for AnySyncOrStrippedState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more