#[non_exhaustive]pub struct CallAnswerEventContent {
pub answer: SessionDescription,
pub call_id: OwnedVoipId,
pub party_id: Option<OwnedVoipId>,
pub version: VoipVersionId,
pub sdp_stream_metadata: BTreeMap<String, StreamMetadata>,
}
Expand description
The content of an m.call.answer
event.
This event is sent by the callee when they wish to answer the call.
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.answer: SessionDescription
The VoIP session description object.
call_id: OwnedVoipId
A unique identifier for the call.
party_id: Option<OwnedVoipId>
Required in VoIP version 1. A unique ID for this session for the duration of the call.
version: VoipVersionId
The version of the VoIP specification this messages adheres to.
sdp_stream_metadata: BTreeMap<String, StreamMetadata>
Added in VoIP version 1. Metadata describing the streams that will be sent.
This is a map of stream ID to metadata about the stream.
Implementations§
source§impl CallAnswerEventContent
impl CallAnswerEventContent
sourcepub fn new(
answer: SessionDescription,
call_id: OwnedVoipId,
version: VoipVersionId,
) -> CallAnswerEventContent
pub fn new( answer: SessionDescription, call_id: OwnedVoipId, version: VoipVersionId, ) -> CallAnswerEventContent
Creates an CallAnswerEventContent
with the given answer, call ID and VoIP version.
sourcepub fn version_0(
answer: SessionDescription,
call_id: OwnedVoipId,
) -> CallAnswerEventContent
pub fn version_0( answer: SessionDescription, call_id: OwnedVoipId, ) -> CallAnswerEventContent
Convenience method to create a VoIP version 0 CallAnswerEventContent
with all the required
fields.
sourcepub fn version_1(
answer: SessionDescription,
call_id: OwnedVoipId,
party_id: OwnedVoipId,
) -> CallAnswerEventContent
pub fn version_1( answer: SessionDescription, call_id: OwnedVoipId, party_id: OwnedVoipId, ) -> CallAnswerEventContent
Convenience method to create a VoIP version 1 CallAnswerEventContent
with all the required
fields.
Trait Implementations§
source§impl Clone for CallAnswerEventContent
impl Clone for CallAnswerEventContent
source§fn clone(&self) -> CallAnswerEventContent
fn clone(&self) -> CallAnswerEventContent
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 CallAnswerEventContent
impl Debug for CallAnswerEventContent
source§impl<'de> Deserialize<'de> for CallAnswerEventContent
impl<'de> Deserialize<'de> for CallAnswerEventContent
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallAnswerEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallAnswerEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for CallAnswerEventContent
impl EventContent for CallAnswerEventContent
§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> <CallAnswerEventContent as EventContent>::EventType
fn event_type(&self) -> <CallAnswerEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.source§impl From<CallAnswerEventContent> for AnyMessageLikeEventContent
impl From<CallAnswerEventContent> for AnyMessageLikeEventContent
source§fn from(c: CallAnswerEventContent) -> AnyMessageLikeEventContent
fn from(c: CallAnswerEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
source§impl RedactContent for CallAnswerEventContent
impl RedactContent for CallAnswerEventContent
§type Redacted = RedactedCallAnswerEventContent
type Redacted = RedactedCallAnswerEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedCallAnswerEventContent
fn redact(self, version: &RoomVersionId) -> RedactedCallAnswerEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for CallAnswerEventContent
impl Serialize for CallAnswerEventContent
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 CallAnswerEventContent
Auto Trait Implementations§
impl Freeze for CallAnswerEventContent
impl RefUnwindSafe for CallAnswerEventContent
impl Send for CallAnswerEventContent
impl Sync for CallAnswerEventContent
impl Unpin for CallAnswerEventContent
impl UnwindSafe for CallAnswerEventContent
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)