#[non_exhaustive]pub struct ToDeviceForwardedRoomKeyEventContent {
pub algorithm: EventEncryptionAlgorithm,
pub room_id: OwnedRoomId,
pub sender_key: String,
pub session_id: String,
pub session_key: String,
pub sender_claimed_ed25519_key: String,
pub forwarding_curve25519_key_chain: Vec<String>,
}
Expand description
The content of an m.forwarded_room_key
event.
To create an instance of this type, first create a ToDeviceForwardedRoomKeyEventContentInit
and convert it via ToDeviceForwardedRoomKeyEventContent::from
/ .into()
.
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.algorithm: EventEncryptionAlgorithm
The encryption algorithm the key in this event is to be used with.
room_id: OwnedRoomId
The room where the key is used.
sender_key: String
The Curve25519 key of the device which initiated the session originally.
session_id: String
The ID of the session that the key is for.
session_key: String
The key to be exchanged.
sender_claimed_ed25519_key: String
The Ed25519 key of the device which initiated the session originally.
It is “claimed” because the receiving device has no way to tell that the original room_key actually came from a device which owns the private part of this key unless they have done device verification.
forwarding_curve25519_key_chain: Vec<String>
Chain of Curve25519 keys.
It starts out empty, but each time the key is forwarded to another device, the previous sender in the chain is added to the end of the list. For example, if the key is forwarded from A to B to C, this field is empty between A and B, and contains A’s Curve25519 key between B and C.
Trait Implementations
sourceimpl Clone for ToDeviceForwardedRoomKeyEventContent
impl Clone for ToDeviceForwardedRoomKeyEventContent
sourcefn clone(&self) -> ToDeviceForwardedRoomKeyEventContent
fn clone(&self) -> ToDeviceForwardedRoomKeyEventContent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'de> Deserialize<'de> for ToDeviceForwardedRoomKeyEventContent
impl<'de> Deserialize<'de> for ToDeviceForwardedRoomKeyEventContent
sourcefn 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
sourceimpl EventContent for ToDeviceForwardedRoomKeyEventContent
impl EventContent for ToDeviceForwardedRoomKeyEventContent
type EventType = ToDeviceEventType
type EventType = ToDeviceEventType
The Rust enum for the event kind’s known types.
sourcefn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like m.room.message
.
sourceimpl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
sourcefn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
fn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<ToDeviceForwardedRoomKeyEventContentInit> for ToDeviceForwardedRoomKeyEventContent
impl From<ToDeviceForwardedRoomKeyEventContentInit> for ToDeviceForwardedRoomKeyEventContent
sourcefn from(init: ToDeviceForwardedRoomKeyEventContentInit) -> Self
fn from(init: ToDeviceForwardedRoomKeyEventContentInit) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ToDeviceForwardedRoomKeyEventContent
impl Send for ToDeviceForwardedRoomKeyEventContent
impl Sync for ToDeviceForwardedRoomKeyEventContent
impl Unpin for ToDeviceForwardedRoomKeyEventContent
impl UnwindSafe for ToDeviceForwardedRoomKeyEventContent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more