Struct ruma_common::events::call::answer::CallAnswerEventContent
source · pub struct CallAnswerEventContent {
pub answer: AnswerSessionDescription,
pub call_id: OwnedVoipId,
pub party_id: Option<OwnedVoipId>,
pub version: VoipVersionId,
pub capabilities: CallCapabilities,
}Available on crate feature
events only.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§
§answer: AnswerSessionDescriptionThe VoIP session description object.
call_id: OwnedVoipIdA unique identifier for the call.
party_id: Option<OwnedVoipId>Available on crate feature
unstable-msc2746 only.Required in VoIP version 1. A unique ID for this session for the duration of the call.
version: VoipVersionIdThe version of the VoIP specification this messages adheres to.
capabilities: CallCapabilitiesAvailable on crate feature
unstable-msc2746 only.Added in VoIP version 1. The VoIP capabilities of the client.
Implementations§
source§impl CallAnswerEventContent
impl CallAnswerEventContent
sourcepub fn new(
answer: AnswerSessionDescription,
call_id: OwnedVoipId,
version: VoipVersionId
) -> Self
pub fn new(
answer: AnswerSessionDescription,
call_id: OwnedVoipId,
version: VoipVersionId
) -> Self
Creates an CallAnswerEventContent with the given answer, call ID and VoIP version.
sourcepub fn version_0(answer: AnswerSessionDescription, call_id: OwnedVoipId) -> Self
pub fn version_0(answer: AnswerSessionDescription, call_id: OwnedVoipId) -> Self
Convenience method to create a VoIP version 0 CallAnswerEventContent with all the required
fields.
sourcepub fn version_1(
answer: AnswerSessionDescription,
call_id: OwnedVoipId,
party_id: OwnedVoipId,
capabilities: CallCapabilities
) -> Self
Available on crate feature unstable-msc2746 only.
pub fn version_1(
answer: AnswerSessionDescription,
call_id: OwnedVoipId,
party_id: OwnedVoipId,
capabilities: CallCapabilities
) -> Self
unstable-msc2746 only.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<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 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) -> Self::EventType
fn event_type(&self) -> Self::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) -> Self
fn from(c: CallAnswerEventContent) -> Self
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 more