Struct matrix_sdk_ui::timeline::TimelineItem
source · pub struct TimelineItem { /* private fields */ }
Expand description
A single entry in timeline.
Implementations§
source§impl TimelineItem
impl TimelineItem
sourcepub fn kind(&self) -> &TimelineItemKind
pub fn kind(&self) -> &TimelineItemKind
Get the TimelineItemKind
of this item.
sourcepub fn as_event(&self) -> Option<&EventTimelineItem>
pub fn as_event(&self) -> Option<&EventTimelineItem>
Get the inner EventTimelineItem
, if this is a
TimelineItemKind::Event
.
sourcepub fn as_virtual(&self) -> Option<&VirtualTimelineItem>
pub fn as_virtual(&self) -> Option<&VirtualTimelineItem>
Get the inner VirtualTimelineItem
, if this is a
TimelineItemKind::Virtual
.
sourcepub fn unique_id(&self) -> &TimelineUniqueId
pub fn unique_id(&self) -> &TimelineUniqueId
Get a unique ID for this timeline item.
It identifies the item on a best-effort basis. For instance, edits
to an EventTimelineItem
will not change the ID of the
enclosing TimelineItem
. For some virtual items like day
dividers, identity isn’t easy to define though and you might
see a new ID getting generated for a day divider that you
perceive to be “the same” as a previous one.
sourcepub fn is_day_divider(&self) -> bool
pub fn is_day_divider(&self) -> bool
Check whether this item is a day divider.
Trait Implementations§
source§impl Clone for TimelineItem
impl Clone for TimelineItem
source§fn clone(&self) -> TimelineItem
fn clone(&self) -> TimelineItem
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 TimelineItem
impl Debug for TimelineItem
Auto Trait Implementations§
impl Freeze for TimelineItem
impl !RefUnwindSafe for TimelineItem
impl Send for TimelineItem
impl Sync for TimelineItem
impl Unpin for TimelineItem
impl !UnwindSafe for TimelineItem
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