Enum matrix_sdk::send_queue::LocalEchoContent
source · pub enum LocalEchoContent {
Event {
serialized_event: SerializableEventContent,
send_handle: SendHandle,
send_error: Option<QueueWedgeError>,
},
React {
key: String,
send_handle: SendReactionHandle,
applies_to: OwnedTransactionId,
},
}
Expand description
The content of a local echo.
Variants§
Event
The local echo contains an actual event ready to display.
Fields
§
serialized_event: SerializableEventContent
Content of the event itself (along with its type) that we are about to send.
§
send_handle: SendHandle
A handle to manipulate the sending of the associated event.
§
send_error: Option<QueueWedgeError>
Whether trying to send this local echo failed in the past with an
unrecoverable error (see SendQueueRoomError::is_recoverable
).
React
A local echo has been reacted to.
Fields
§
send_handle: SendReactionHandle
A handle to manipulate the sending of the reaction.
§
applies_to: OwnedTransactionId
The local echo which has been reacted to.
Trait Implementations§
source§impl Clone for LocalEchoContent
impl Clone for LocalEchoContent
source§fn clone(&self) -> LocalEchoContent
fn clone(&self) -> LocalEchoContent
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 LocalEchoContent
impl !RefUnwindSafe for LocalEchoContent
impl Send for LocalEchoContent
impl Sync for LocalEchoContent
impl Unpin for LocalEchoContent
impl !UnwindSafe for LocalEchoContent
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