#[non_exhaustive]pub struct VoiceEventContent {
pub text: TextContentBlock,
pub file: FileContentBlock,
pub audio_details: VoiceAudioDetailsContentBlock,
pub automated: bool,
pub relates_to: Option<Relation<VoiceEventContentWithoutRelation>>,
}Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.text: TextContentBlockThe text representation of the message.
file: FileContentBlockThe file content of the message.
audio_details: VoiceAudioDetailsContentBlockThe audio content of the message.
automated: boolWhether 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,
) -> Self
pub fn new( text: TextContentBlock, file: FileContentBlock, audio_details: VoiceAudioDetailsContentBlock, ) -> Self
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,
) -> Self
pub fn with_plain_text( plain_text: impl Into<String>, file: FileContentBlock, audio_details: VoiceAudioDetailsContentBlock, ) -> Self
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 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 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<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<VoiceEventContent> for AnyMessageLikeEventContent
Available on crate feature unstable-msc3245 only.
impl From<VoiceEventContent> for AnyMessageLikeEventContent
Available on crate feature
unstable-msc3245 only.Source§fn from(c: VoiceEventContent) -> Self
fn from(c: VoiceEventContent) -> Self
Converts to this type from the input type.
Source§impl From<VoiceEventContent> for VoiceEventContentWithoutRelation
impl From<VoiceEventContent> for VoiceEventContentWithoutRelation
Source§fn from(c: VoiceEventContent) -> Self
fn from(c: VoiceEventContent) -> Self
Converts to this type from the input type.
Source§impl MessageLikeEventContent for VoiceEventContent
impl MessageLikeEventContent for VoiceEventContent
Source§fn event_type(&self) -> MessageLikeEventType
fn event_type(&self) -> MessageLikeEventType
Get the event’s type, like
m.room.message.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, _rules: &RedactionRules) -> RedactedVoiceEventContent
fn redact(self, _rules: &RedactionRules) -> 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
impl JsonCastable<AnyMessageLikeEventContent> for VoiceEventContent
Available on crate feature
unstable-msc3245 only.impl JsonCastable<Map<String, Value>> for VoiceEventContent
impl JsonCastable<RedactedVoiceEventContent> for VoiceEventContent
impl JsonCastable<VoiceEventContentWithoutRelation> 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