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>>,
}
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
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,
) -> 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 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<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 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) -> Self::EventType
fn event_type(&self) -> Self::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) -> 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 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
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
)