Struct ruma_common::events::key::verification::ready::KeyVerificationReadyEventContent
source · pub struct KeyVerificationReadyEventContent {
pub from_device: OwnedDeviceId,
pub methods: Vec<VerificationMethod>,
pub relates_to: Reference,
}Available on crate feature
events only.Expand description
The content of an in-room m.m.key.verification.ready event.
Response to a previously sent m.key.verification.request message.
Fields§
§from_device: OwnedDeviceIdThe device ID which is initiating the request.
methods: Vec<VerificationMethod>The verification methods supported by the sender.
relates_to: ReferenceRelation signaling which verification request this event is responding to.
Implementations§
source§impl KeyVerificationReadyEventContent
impl KeyVerificationReadyEventContent
sourcepub fn new(
from_device: OwnedDeviceId,
methods: Vec<VerificationMethod>,
relates_to: Reference
) -> Self
pub fn new( from_device: OwnedDeviceId, methods: Vec<VerificationMethod>, relates_to: Reference ) -> Self
Creates a new KeyVerificationReadyEventContent with the given device ID, methods and
reference.
Trait Implementations§
source§impl Clone for KeyVerificationReadyEventContent
impl Clone for KeyVerificationReadyEventContent
source§fn clone(&self) -> KeyVerificationReadyEventContent
fn clone(&self) -> KeyVerificationReadyEventContent
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 KeyVerificationReadyEventContent
impl<'de> Deserialize<'de> for KeyVerificationReadyEventContent
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 KeyVerificationReadyEventContent
impl EventContent for KeyVerificationReadyEventContent
§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<KeyVerificationReadyEventContent> for AnyMessageLikeEventContent
impl From<KeyVerificationReadyEventContent> for AnyMessageLikeEventContent
source§fn from(c: KeyVerificationReadyEventContent) -> Self
fn from(c: KeyVerificationReadyEventContent) -> Self
Converts to this type from the input type.
source§impl RedactContent for KeyVerificationReadyEventContent
impl RedactContent for KeyVerificationReadyEventContent
§type Redacted = RedactedKeyVerificationReadyEventContent
type Redacted = RedactedKeyVerificationReadyEventContent
The redacted form of the event’s content.
source§fn redact(
self,
version: &RoomVersionId
) -> RedactedKeyVerificationReadyEventContent
fn redact( self, version: &RoomVersionId ) -> RedactedKeyVerificationReadyEventContent
Transform
self into a redacted form (removing most or all fields) according to the spec. Read more