#[non_exhaustive]pub struct CallRejectEventContent {
pub call_id: OwnedVoipId,
pub party_id: OwnedVoipId,
pub version: VoipVersionId,
}
Expand description
Added in VoIP version 1. The content of an m.call.reject
event.
Starting from VoIP version 1, this event is sent by the callee to reject an invite.
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: OwnedVoipId
The ID of the call this event relates to.
party_id: OwnedVoipId
A unique ID for this session for the duration of the call.
version: VoipVersionId
The version of the VoIP specification this messages adheres to.
Cannot be older than VoipVersionId::V1
.
Implementations§
source§impl CallRejectEventContent
impl CallRejectEventContent
sourcepub fn new(
call_id: OwnedVoipId,
party_id: OwnedVoipId,
version: VoipVersionId,
) -> CallRejectEventContent
pub fn new( call_id: OwnedVoipId, party_id: OwnedVoipId, version: VoipVersionId, ) -> CallRejectEventContent
Creates a CallRejectEventContent
with the given call ID, VoIP version and party ID.
sourcepub fn version_1(
call_id: OwnedVoipId,
party_id: OwnedVoipId,
) -> CallRejectEventContent
pub fn version_1( call_id: OwnedVoipId, party_id: OwnedVoipId, ) -> CallRejectEventContent
Convenience method to create a version 1 CallRejectEventContent
with all the required
fields.
Trait Implementations§
source§impl Clone for CallRejectEventContent
impl Clone for CallRejectEventContent
source§fn clone(&self) -> CallRejectEventContent
fn clone(&self) -> CallRejectEventContent
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 CallRejectEventContent
impl Debug for CallRejectEventContent
source§impl<'de> Deserialize<'de> for CallRejectEventContent
impl<'de> Deserialize<'de> for CallRejectEventContent
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallRejectEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CallRejectEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for CallRejectEventContent
impl EventContent for CallRejectEventContent
§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> <CallRejectEventContent as EventContent>::EventType
fn event_type(&self) -> <CallRejectEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.source§impl From<CallRejectEventContent> for AnyMessageLikeEventContent
impl From<CallRejectEventContent> for AnyMessageLikeEventContent
source§fn from(c: CallRejectEventContent) -> AnyMessageLikeEventContent
fn from(c: CallRejectEventContent) -> AnyMessageLikeEventContent
Converts to this type from the input type.
source§impl RedactContent for CallRejectEventContent
impl RedactContent for CallRejectEventContent
§type Redacted = RedactedCallRejectEventContent
type Redacted = RedactedCallRejectEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedCallRejectEventContent
fn redact(self, version: &RoomVersionId) -> RedactedCallRejectEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for CallRejectEventContent
impl Serialize for CallRejectEventContent
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 CallRejectEventContent
Auto Trait Implementations§
impl Freeze for CallRejectEventContent
impl RefUnwindSafe for CallRejectEventContent
impl Send for CallRejectEventContent
impl Sync for CallRejectEventContent
impl Unpin for CallRejectEventContent
impl UnwindSafe for CallRejectEventContent
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
)