pub struct KeyVerificationAcceptEventContent {
pub method: AcceptMethod,
pub relates_to: Reference,
}Available on crate feature
events only.Expand description
The content of a in-room m.key.verification.accept event.
Accepts a previously sent m.key.verification.start message.
Fields§
§method: AcceptMethodThe method specific content.
relates_to: ReferenceInformation about the related event.
Implementations§
source§impl KeyVerificationAcceptEventContent
impl KeyVerificationAcceptEventContent
sourcepub fn new(method: AcceptMethod, relates_to: Reference) -> Self
pub fn new(method: AcceptMethod, relates_to: Reference) -> Self
Creates a new ToDeviceKeyVerificationAcceptEventContent with the given method-specific
content and reference.
Trait Implementations§
source§impl Clone for KeyVerificationAcceptEventContent
impl Clone for KeyVerificationAcceptEventContent
source§fn clone(&self) -> KeyVerificationAcceptEventContent
fn clone(&self) -> KeyVerificationAcceptEventContent
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<'de> Deserialize<'de> for KeyVerificationAcceptEventContent
impl<'de> Deserialize<'de> for KeyVerificationAcceptEventContent
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 KeyVerificationAcceptEventContent
impl EventContent for KeyVerificationAcceptEventContent
§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<KeyVerificationAcceptEventContent> for AnyMessageLikeEventContent
impl From<KeyVerificationAcceptEventContent> for AnyMessageLikeEventContent
source§fn from(c: KeyVerificationAcceptEventContent) -> Self
fn from(c: KeyVerificationAcceptEventContent) -> Self
Converts to this type from the input type.
source§impl RedactContent for KeyVerificationAcceptEventContent
impl RedactContent for KeyVerificationAcceptEventContent
§type Redacted = RedactedKeyVerificationAcceptEventContent
type Redacted = RedactedKeyVerificationAcceptEventContent
The redacted form of the event’s content.
source§fn redact(
self,
version: &RoomVersionId
) -> RedactedKeyVerificationAcceptEventContent
fn redact(
self,
version: &RoomVersionId
) -> RedactedKeyVerificationAcceptEventContent
Transform
self into a redacted form (removing most or all fields) according to the spec. Read more