#[non_exhaustive]pub struct CallSelectAnswerEventContent {
    pub call_id: OwnedVoipId,
    pub party_id: OwnedVoipId,
    pub selected_party_id: OwnedVoipId,
    pub version: VoipVersionId,
}Available on crate feature 
events only.Expand description
Added in VoIP version 1. The content of an m.call.select_answer event.
This event is sent by the caller when it has chosen an answer.
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.call_id: OwnedVoipIdThe ID of the call this event relates to.
party_id: OwnedVoipIdA unique ID for this session for the duration of the call.
Must be the same as the one sent by the previous invite from this session.
selected_party_id: OwnedVoipIdThe party ID of the selected answer to the previously sent invite.
version: VoipVersionIdThe version of the VoIP specification this messages adheres to.
Cannot be older than VoipVersionId::V1.
Implementations§
Source§impl CallSelectAnswerEventContent
 
impl CallSelectAnswerEventContent
Sourcepub fn new(
    call_id: OwnedVoipId,
    party_id: OwnedVoipId,
    selected_party_id: OwnedVoipId,
    version: VoipVersionId,
) -> CallSelectAnswerEventContent
 
pub fn new( call_id: OwnedVoipId, party_id: OwnedVoipId, selected_party_id: OwnedVoipId, version: VoipVersionId, ) -> CallSelectAnswerEventContent
Creates a CallSelectAnswerEventContent with the given call ID, VoIP version, party ID and
selected party ID.
Sourcepub fn version_1(
    call_id: OwnedVoipId,
    party_id: OwnedVoipId,
    selected_party_id: OwnedVoipId,
) -> CallSelectAnswerEventContent
 
pub fn version_1( call_id: OwnedVoipId, party_id: OwnedVoipId, selected_party_id: OwnedVoipId, ) -> CallSelectAnswerEventContent
Convenience method to create a version 1 CallSelectAnswerEventContent with all the
required fields.
Trait Implementations§
Source§impl Clone for CallSelectAnswerEventContent
 
impl Clone for CallSelectAnswerEventContent
Source§fn clone(&self) -> CallSelectAnswerEventContent
 
fn clone(&self) -> CallSelectAnswerEventContent
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 CallSelectAnswerEventContent
 
impl Debug for CallSelectAnswerEventContent
Source§impl<'de> Deserialize<'de> for CallSelectAnswerEventContent
 
impl<'de> Deserialize<'de> for CallSelectAnswerEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<CallSelectAnswerEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<CallSelectAnswerEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<CallSelectAnswerEventContent> for AnyMessageLikeEventContent
 
impl From<CallSelectAnswerEventContent> for AnyMessageLikeEventContent
Source§fn from(c: CallSelectAnswerEventContent) -> AnyMessageLikeEventContent
 
fn from(c: CallSelectAnswerEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
Source§impl MessageLikeEventContent for CallSelectAnswerEventContent
 
impl MessageLikeEventContent for CallSelectAnswerEventContent
Source§fn event_type(&self) -> MessageLikeEventType
 
fn event_type(&self) -> MessageLikeEventType
Get the event’s type, like 
m.room.message.Source§impl RedactContent for CallSelectAnswerEventContent
 
impl RedactContent for CallSelectAnswerEventContent
Source§type Redacted = RedactedCallSelectAnswerEventContent
 
type Redacted = RedactedCallSelectAnswerEventContent
The redacted form of the event’s content.
Source§fn redact(self, _rules: &RedactionRules) -> RedactedCallSelectAnswerEventContent
 
fn redact(self, _rules: &RedactionRules) -> RedactedCallSelectAnswerEventContent
Transform 
self into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl Serialize for CallSelectAnswerEventContent
 
impl Serialize for CallSelectAnswerEventContent
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 JsonCastable<AnyMessageLikeEventContent> for CallSelectAnswerEventContent
impl JsonCastable<Map<String, Value>> for CallSelectAnswerEventContent
impl JsonCastable<RedactedCallSelectAnswerEventContent> for CallSelectAnswerEventContent
Auto Trait Implementations§
impl Freeze for CallSelectAnswerEventContent
impl RefUnwindSafe for CallSelectAnswerEventContent
impl Send for CallSelectAnswerEventContent
impl Sync for CallSelectAnswerEventContent
impl Unpin for CallSelectAnswerEventContent
impl UnwindSafe for CallSelectAnswerEventContent
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