#[non_exhaustive]pub struct AmbiguityChange {
pub member_ambiguous: bool,
pub disambiguated_member: Option<OwnedUserId>,
pub ambiguated_member: Option<OwnedUserId>,
}
Expand description
A change in ambiguity of room members that an m.room.member
event
triggers.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.member_ambiguous: bool
Is the member that is contained in the state key of the m.room.member
event itself ambiguous because of the event.
disambiguated_member: Option<OwnedUserId>
Has another user been disambiguated because of this event.
ambiguated_member: Option<OwnedUserId>
Has another user become ambiguous because of this event.
Trait Implementations§
source§impl Clone for AmbiguityChange
impl Clone for AmbiguityChange
source§fn clone(&self) -> AmbiguityChange
fn clone(&self) -> AmbiguityChange
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 AmbiguityChange
impl Debug for AmbiguityChange
source§impl Default for AmbiguityChange
impl Default for AmbiguityChange
source§fn default() -> AmbiguityChange
fn default() -> AmbiguityChange
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for AmbiguityChange
impl Send for AmbiguityChange
impl Sync for AmbiguityChange
impl Unpin for AmbiguityChange
impl UnwindSafe for AmbiguityChange
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