Struct matrix_sdk_ui::timeline::RepliedToEvent
source · pub struct RepliedToEvent { /* private fields */ }
Expand description
An event that is replied to.
Implementations§
source§impl RepliedToEvent
impl RepliedToEvent
sourcepub fn content(&self) -> &TimelineItemContent
pub fn content(&self) -> &TimelineItemContent
Get the message of this event.
sourcepub fn sender_profile(&self) -> &TimelineDetails<Profile>
pub fn sender_profile(&self) -> &TimelineDetails<Profile>
Get the profile of the sender.
pub fn from_timeline_item(timeline_item: &EventTimelineItem) -> Self
sourcepub async fn try_from_timeline_event_for_room(
timeline_event: TimelineEvent,
room_data_provider: &Room,
) -> Result<Self, TimelineError>
pub async fn try_from_timeline_event_for_room( timeline_event: TimelineEvent, room_data_provider: &Room, ) -> Result<Self, TimelineError>
Try to create a RepliedToEvent
from a TimelineEvent
by providing the
room.
Trait Implementations§
source§impl Clone for RepliedToEvent
impl Clone for RepliedToEvent
source§fn clone(&self) -> RepliedToEvent
fn clone(&self) -> RepliedToEvent
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 moreAuto Trait Implementations§
impl Freeze for RepliedToEvent
impl !RefUnwindSafe for RepliedToEvent
impl Send for RepliedToEvent
impl Sync for RepliedToEvent
impl Unpin for RepliedToEvent
impl !UnwindSafe for RepliedToEvent
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