Struct xmpp::message::MucMessageId
source · pub struct MucMessageId {
pub sender_assigned_id: Id,
pub room_assigned_id: Id,
}
Expand description
A message ID for a message in a MUC room.
Note: this struct is a bit weird due to an inconsistency between XEPs 0308 and 0424.
XEP-0424 (Message Retraction) designates messages to correct by the sender-assigned ID, but XEP-0308 (Last Message Correction) designates messages to correct by the room-assigned ID.
Hence, both are needed, but depending on context, one or the other may be missing or may refer to something else; see the context-specific documentation for more information.
Fields§
§sender_assigned_id: Id
The ID of the message as assigned by the client that sent it.
room_assigned_id: Id
The ID of the message as assigned by the room.
Trait Implementations§
source§impl Clone for MucMessageId
impl Clone for MucMessageId
source§fn clone(&self) -> MucMessageId
fn clone(&self) -> MucMessageId
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 MucMessageId
impl Debug for MucMessageId
source§impl Hash for MucMessageId
impl Hash for MucMessageId
source§impl PartialEq for MucMessageId
impl PartialEq for MucMessageId
source§fn eq(&self, other: &MucMessageId) -> bool
fn eq(&self, other: &MucMessageId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MucMessageId
impl StructuralPartialEq for MucMessageId
Auto Trait Implementations§
impl Freeze for MucMessageId
impl RefUnwindSafe for MucMessageId
impl Send for MucMessageId
impl Sync for MucMessageId
impl Unpin for MucMessageId
impl UnwindSafe for MucMessageId
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.