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: SerializableEventContentContent of the event itself (along with its type) that we are about to send.
§
send_handle: SendHandleA 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: SendReactionHandleA handle to manipulate the sending of the reaction.
§
applies_to: OwnedTransactionIdThe 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 duplicate 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§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