#[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>,
pub shared_history: bool,
}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: EventEncryptionAlgorithmThe encryption algorithm the key in this event is to be used with.
room_id: OwnedRoomIdThe room where the key is used.
sender_key: StringThe Curve25519 key of the device which initiated the session originally.
session_id: StringThe ID of the session that the key is for.
session_key: StringThe key to be exchanged.
sender_claimed_ed25519_key: StringThe 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.
Used to mark key if allowed for shared history.
Defaults to false.
Trait Implementations§
Source§impl Clone for ToDeviceForwardedRoomKeyEventContent
impl Clone for ToDeviceForwardedRoomKeyEventContent
Source§fn clone(&self) -> ToDeviceForwardedRoomKeyEventContent
fn clone(&self) -> ToDeviceForwardedRoomKeyEventContent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de> Deserialize<'de> for ToDeviceForwardedRoomKeyEventContent
impl<'de> Deserialize<'de> for ToDeviceForwardedRoomKeyEventContent
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>,
Source§impl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceForwardedRoomKeyEventContent> for AnyToDeviceEventContent
Source§fn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
fn from(c: ToDeviceForwardedRoomKeyEventContent) -> Self
Source§impl From<ToDeviceForwardedRoomKeyEventContentInit> for ToDeviceForwardedRoomKeyEventContent
impl From<ToDeviceForwardedRoomKeyEventContentInit> for ToDeviceForwardedRoomKeyEventContent
Source§fn from(init: ToDeviceForwardedRoomKeyEventContentInit) -> Self
fn from(init: ToDeviceForwardedRoomKeyEventContentInit) -> Self
Source§impl ToDeviceEventContent for ToDeviceForwardedRoomKeyEventContent
impl ToDeviceEventContent for ToDeviceForwardedRoomKeyEventContent
Source§fn event_type(&self) -> ToDeviceEventType
fn event_type(&self) -> ToDeviceEventType
m.room_key.impl JsonCastable<AnyToDeviceEventContent> for ToDeviceForwardedRoomKeyEventContent
impl JsonCastable<Map<String, Value>> for ToDeviceForwardedRoomKeyEventContent
Auto Trait Implementations§
impl Freeze for ToDeviceForwardedRoomKeyEventContent
impl RefUnwindSafe for ToDeviceForwardedRoomKeyEventContent
impl Send for ToDeviceForwardedRoomKeyEventContent
impl Sync for ToDeviceForwardedRoomKeyEventContent
impl Unpin for ToDeviceForwardedRoomKeyEventContent
impl UnwindSafe for ToDeviceForwardedRoomKeyEventContent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EventContentFromType for Twhere
T: StaticEventContent + DeserializeOwned,
impl<T> EventContentFromType for Twhere
T: StaticEventContent + DeserializeOwned,
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more