Struct matrix_sdk_base::sync::LeftRoomUpdate
source · pub struct LeftRoomUpdate {
pub timeline: Timeline,
pub state: Vec<Raw<AnySyncStateEvent>>,
pub account_data: Vec<Raw<AnyRoomAccountDataEvent>>,
pub ambiguity_changes: BTreeMap<OwnedEventId, AmbiguityChange>,
}
Expand description
Updates to left rooms.
Fields§
§timeline: Timeline
The timeline of messages and state changes in the room up to the point when the user left.
state: Vec<Raw<AnySyncStateEvent>>
Updates to the state, between the time indicated by the since
parameter, and the start of the timeline
(or all state up to the
start of the timeline
, if since
is not given, or full_state
is
true).
account_data: Vec<Raw<AnyRoomAccountDataEvent>>
The private data that this user has attached to this room.
ambiguity_changes: BTreeMap<OwnedEventId, AmbiguityChange>
Collection of ambiguity changes that room member events trigger.
This is a map of event ID of the m.room.member
event to the
details of the ambiguity change.
Trait Implementations§
source§impl Clone for LeftRoomUpdate
impl Clone for LeftRoomUpdate
source§fn clone(&self) -> LeftRoomUpdate
fn clone(&self) -> LeftRoomUpdate
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 moresource§impl Debug for LeftRoomUpdate
impl Debug for LeftRoomUpdate
source§impl Default for LeftRoomUpdate
impl Default for LeftRoomUpdate
source§fn default() -> LeftRoomUpdate
fn default() -> LeftRoomUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LeftRoomUpdate
impl RefUnwindSafe for LeftRoomUpdate
impl Send for LeftRoomUpdate
impl Sync for LeftRoomUpdate
impl Unpin for LeftRoomUpdate
impl UnwindSafe for LeftRoomUpdate
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more