#[non_exhaustive]pub struct Thread {
pub event_id: OwnedEventId,
pub in_reply_to: Option<InReplyTo>,
pub is_falling_back: bool,
}Expand description
The content of a thread relation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.event_id: OwnedEventIdThe ID of the root message in the thread.
in_reply_to: Option<InReplyTo>A reply relation.
If this event is a reply and belongs to a thread, this points to the message that is being
replied to, and is_falling_back must be set to false.
If this event is not a reply, this is used as a fallback mechanism for clients that do not
support threads. This should point to the latest message-like event in the thread and
is_falling_back must be set to true.
is_falling_back: boolWhether the m.in_reply_to field is a fallback for older clients or a genuine reply in a
thread.
Implementations§
Source§impl Thread
impl Thread
Sourcepub fn plain(event_id: OwnedEventId, latest_event_id: OwnedEventId) -> Self
pub fn plain(event_id: OwnedEventId, latest_event_id: OwnedEventId) -> Self
Convenience method to create a regular Thread relation with the given root event ID and
latest message-like event ID.
Sourcepub fn without_fallback(event_id: OwnedEventId) -> Self
pub fn without_fallback(event_id: OwnedEventId) -> Self
Convenience method to create a regular Thread relation with the given root event ID and
without the recommended reply fallback.
Sourcepub fn reply(event_id: OwnedEventId, reply_to_event_id: OwnedEventId) -> Self
pub fn reply(event_id: OwnedEventId, reply_to_event_id: OwnedEventId) -> Self
Convenience method to create a reply Thread relation with the given root event ID and
replied-to event ID.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Thread
impl<'de> Deserialize<'de> for Thread
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for Thread
impl RefUnwindSafe for Thread
impl Send for Thread
impl Sync for Thread
impl Unpin for Thread
impl UnsafeUnpin for Thread
impl UnwindSafe for Thread
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more