Enum ruma_events::room::message::Relation
source · pub enum Relation<C> {
Reply {
in_reply_to: InReplyTo,
},
Replacement(Replacement<C>),
Thread(Thread),
// some variants omitted
}
Expand description
Message event relationship.
Variants§
Reply
An m.in_reply_to
relation indicating that the event is a reply to another event.
Replacement(Replacement<C>)
An event that replaces another event.
Thread(Thread)
An event that belongs to a thread.
Implementations§
source§impl<C> Relation<C>
impl<C> Relation<C>
sourcepub fn rel_type(&self) -> Option<RelationType>
pub fn rel_type(&self) -> Option<RelationType>
The type of this Relation
.
Returns an Option
because the Reply
relation does not have arel_type
field.
sourcepub fn data(&self) -> Cow<'_, JsonObject>where
C: Clone,
pub fn data(&self) -> Cow<'_, JsonObject>where
C: Clone,
The associated data.
The returned JSON object holds the contents of m.relates_to
, including rel_type
and
event_id
if present, but not things like m.new_content
for m.replace
relations that
live next to m.relates_to
.
Prefer to use the public variants of Relation
where possible; this method is meant to
be used for custom relations only.
Trait Implementations§
Auto Trait Implementations§
impl<C> Freeze for Relation<C>where
C: Freeze,
impl<C> RefUnwindSafe for Relation<C>where
C: RefUnwindSafe,
impl<C> Send for Relation<C>where
C: Send,
impl<C> Sync for Relation<C>where
C: Sync,
impl<C> Unpin for Relation<C>where
C: Unpin,
impl<C> UnwindSafe for Relation<C>where
C: UnwindSafe,
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)