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
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<DependentQueuedRequestKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DependentQueuedRequestKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for DependentQueuedRequestKind
impl Serialize for DependentQueuedRequestKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync 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