pub enum DependentQueuedRequestKind {
EditEvent {
new_content: SerializableEventContent,
},
RedactEvent,
ReactEvent {
key: String,
},
UploadFileOrThumbnail {
content_type: String,
cache_key: MediaRequestParameters,
related_to: OwnedTransactionId,
parent_is_thumbnail_upload: bool,
},
FinishUpload {
local_echo: Box<RoomMessageEventContent>,
file_upload: OwnedTransactionId,
thumbnail_info: Option<FinishUploadThumbnailInfo>,
},
FinishGallery {
local_echo: Box<RoomMessageEventContent>,
item_infos: Vec<FinishGalleryItemInfo>,
},
}
Expand description
The specific user intent that characterizes a DependentQueuedRequest
.
Variants§
EditEvent
The event should be edited.
Fields
new_content: SerializableEventContent
The new event for the content.
RedactEvent
The event should be redacted/aborted/removed.
ReactEvent
The event should be reacted to, with the given key.
UploadFileOrThumbnail
Upload a file or thumbnail depending on another file or thumbnail upload.
Fields
cache_key: MediaRequestParameters
Media request necessary to retrieve the file or thumbnail itself.
To which media transaction id does this upload relate to?
FinishUpload
Finish an upload by updating references to the media cache and sending the final media event with the remote MXC URIs.
Fields
local_echo: Box<RoomMessageEventContent>
Local echo for the event (containing the local MXC URIs).
Box
the local echo so that it reduces the size of the whole enum.
file_upload: OwnedTransactionId
Transaction id for the file upload.
thumbnail_info: Option<FinishUploadThumbnailInfo>
Information about the thumbnail, if present.
FinishGallery
unstable-msc4274
only.Finish a gallery upload by updating references to the media cache and sending the final gallery event with the remote MXC URIs.
Fields
local_echo: Box<RoomMessageEventContent>
Local echo for the event (containing the local MXC URIs).
Box
the local echo so that it reduces the size of the whole enum.
item_infos: Vec<FinishGalleryItemInfo>
Metadata about the gallery items.
Trait Implementations§
Source§impl Clone for DependentQueuedRequestKind
impl Clone for DependentQueuedRequestKind
Source§fn clone(&self) -> DependentQueuedRequestKind
fn clone(&self) -> DependentQueuedRequestKind
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DependentQueuedRequestKind
impl Debug for DependentQueuedRequestKind
Source§impl<'de> Deserialize<'de> for DependentQueuedRequestKind
impl<'de> Deserialize<'de> for DependentQueuedRequestKind
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 DependentQueuedRequestKind
impl RefUnwindSafe for DependentQueuedRequestKind
impl Send for DependentQueuedRequestKind
impl Sync for DependentQueuedRequestKind
impl Unpin for DependentQueuedRequestKind
impl UnwindSafe for DependentQueuedRequestKind
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> CompatExt for T
impl<T> CompatExt for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Arc<>
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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