#[non_exhaustive]pub struct CallInviteEventContent {
pub call_id: OwnedVoipId,
pub party_id: Option<OwnedVoipId>,
pub lifetime: UInt,
pub offer: SessionDescription,
pub version: VoipVersionId,
pub capabilities: CallCapabilities,
pub invitee: Option<OwnedUserId>,
pub sdp_stream_metadata: BTreeMap<String, StreamMetadata>,
}
events
only.Expand description
The content of an m.call.invite
event.
This event is sent by the caller when they wish to establish a call.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
lifetime: UInt
The time in milliseconds that the invite is valid for.
Once the invite age exceeds this value, clients should discard it. They should also no longer show the call as awaiting an answer in the UI.
offer: SessionDescription
The session description object.
version: VoipVersionId
The version of the VoIP specification this messages adheres to.
capabilities: CallCapabilities
unstable-msc2747
only.The VoIP capabilities of the client.
invitee: Option<OwnedUserId>
Added in VoIP version 1. The intended target of the invite, if any.
If this is None
, the invite is intended for any member of the room, except the sender.
The invite should be ignored if the invitee is set and doesn’t match the user’s ID.
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 CallInviteEventContent
impl CallInviteEventContent
Sourcepub fn new(
call_id: OwnedVoipId,
lifetime: UInt,
offer: SessionDescription,
version: VoipVersionId,
) -> CallInviteEventContent
pub fn new( call_id: OwnedVoipId, lifetime: UInt, offer: SessionDescription, version: VoipVersionId, ) -> CallInviteEventContent
Creates a new CallInviteEventContent
with the given call ID, lifetime, offer and VoIP
version.
Sourcepub fn version_0(
call_id: OwnedVoipId,
lifetime: UInt,
offer: SessionDescription,
) -> CallInviteEventContent
pub fn version_0( call_id: OwnedVoipId, lifetime: UInt, offer: SessionDescription, ) -> CallInviteEventContent
Convenience method to create a version 0 CallInviteEventContent
with all the required
fields.
Sourcepub fn version_1(
call_id: OwnedVoipId,
party_id: OwnedVoipId,
lifetime: UInt,
offer: SessionDescription,
) -> CallInviteEventContent
pub fn version_1( call_id: OwnedVoipId, party_id: OwnedVoipId, lifetime: UInt, offer: SessionDescription, ) -> CallInviteEventContent
Convenience method to create a version 1 CallInviteEventContent
with all the required
fields.
Trait Implementations§
Source§impl Clone for CallInviteEventContent
impl Clone for CallInviteEventContent
Source§fn clone(&self) -> CallInviteEventContent
fn clone(&self) -> CallInviteEventContent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CallInviteEventContent
impl Debug for CallInviteEventContent
Source§impl<'de> Deserialize<'de> for CallInviteEventContent
impl<'de> Deserialize<'de> for CallInviteEventContent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallInviteEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallInviteEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl EventContent for CallInviteEventContent
impl EventContent for CallInviteEventContent
Source§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
Source§fn event_type(&self) -> <CallInviteEventContent as EventContent>::EventType
fn event_type(&self) -> <CallInviteEventContent as EventContent>::EventType
m.room.message
.Source§impl From<CallInviteEventContent> for AnyMessageLikeEventContent
impl From<CallInviteEventContent> for AnyMessageLikeEventContent
Source§fn from(c: CallInviteEventContent) -> AnyMessageLikeEventContent
fn from(c: CallInviteEventContent) -> AnyMessageLikeEventContent
Source§impl RedactContent for CallInviteEventContent
impl RedactContent for CallInviteEventContent
Source§type Redacted = RedactedCallInviteEventContent
type Redacted = RedactedCallInviteEventContent
Source§fn redact(self, version: &RoomVersionId) -> RedactedCallInviteEventContent
fn redact(self, version: &RoomVersionId) -> RedactedCallInviteEventContent
self
into a redacted form (removing most or all fields) according to the spec. Read more