Struct ruma::events::voice::VoiceEventContent
source · pub struct VoiceEventContent {
pub text: TextContentBlock,
pub file: FileContentBlock,
pub audio_details: VoiceAudioDetailsContentBlock,
pub automated: bool,
pub relates_to: Option<Relation<VoiceEventContentWithoutRelation>>,
}
Available on crate features
events
and unstable-msc3245
only.Expand description
Fields§
§text: TextContentBlock
The text representation of the message.
file: FileContentBlock
The file content of the message.
audio_details: VoiceAudioDetailsContentBlock
The audio content of the message.
automated: bool
Available on crate feature
unstable-msc3955
only.Whether this message is automated.
relates_to: Option<Relation<VoiceEventContentWithoutRelation>>
Information about related messages.
Implementations§
source§impl VoiceEventContent
impl VoiceEventContent
sourcepub fn new(
text: TextContentBlock,
file: FileContentBlock,
audio_details: VoiceAudioDetailsContentBlock,
) -> VoiceEventContent
pub fn new( text: TextContentBlock, file: FileContentBlock, audio_details: VoiceAudioDetailsContentBlock, ) -> VoiceEventContent
Creates a new VoiceEventContent
with the given fallback representation, file and audio
details.
sourcepub fn with_plain_text(
plain_text: impl Into<String>,
file: FileContentBlock,
audio_details: VoiceAudioDetailsContentBlock,
) -> VoiceEventContent
pub fn with_plain_text( plain_text: impl Into<String>, file: FileContentBlock, audio_details: VoiceAudioDetailsContentBlock, ) -> VoiceEventContent
Creates a new VoiceEventContent
with the given plain text fallback representation, file
and audio details.
Trait Implementations§
source§impl Clone for VoiceEventContent
impl Clone for VoiceEventContent
source§fn clone(&self) -> VoiceEventContent
fn clone(&self) -> VoiceEventContent
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 moresource§impl Debug for VoiceEventContent
impl Debug for VoiceEventContent
source§impl<'de> Deserialize<'de> for VoiceEventContent
impl<'de> Deserialize<'de> for VoiceEventContent
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VoiceEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VoiceEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for VoiceEventContent
impl EventContent for VoiceEventContent
source§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> <VoiceEventContent as EventContent>::EventType
fn event_type(&self) -> <VoiceEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.source§impl From<VoiceEventContent> for AnyMessageLikeEventContent
impl From<VoiceEventContent> for AnyMessageLikeEventContent
source§fn from(c: VoiceEventContent) -> AnyMessageLikeEventContent
fn from(c: VoiceEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
source§impl From<VoiceEventContent> for VoiceEventContentWithoutRelation
impl From<VoiceEventContent> for VoiceEventContentWithoutRelation
source§fn from(c: VoiceEventContent) -> VoiceEventContentWithoutRelation
fn from(c: VoiceEventContent) -> VoiceEventContentWithoutRelation
Converts to this type from the input type.
source§impl RedactContent for VoiceEventContent
impl RedactContent for VoiceEventContent
source§type Redacted = RedactedVoiceEventContent
type Redacted = RedactedVoiceEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedVoiceEventContent
fn redact(self, version: &RoomVersionId) -> RedactedVoiceEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for VoiceEventContent
impl Serialize for VoiceEventContent
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,
Serialize this value into the given Serde serializer. Read more
impl MessageLikeEventContent for VoiceEventContent
Auto Trait Implementations§
impl Freeze for VoiceEventContent
impl RefUnwindSafe for VoiceEventContent
impl Send for VoiceEventContent
impl Sync for VoiceEventContent
impl Unpin for VoiceEventContent
impl UnwindSafe for VoiceEventContent
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> EventContentFromType for Twhere
T: EventContent + DeserializeOwned,
impl<T> EventContentFromType for Twhere
T: EventContent + DeserializeOwned,
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