Struct ruma_common::encryption::CrossSigningKey [−][src]
pub struct CrossSigningKey {
pub user_id: UserId,
pub usage: Vec<KeyUsage>,
pub keys: BTreeMap<String, String>,
pub signatures: CrossSigningKeySignatures,
}Expand description
A cross signing key.
Fields
user_id: UserIdThe ID of the user the key belongs to.
usage: Vec<KeyUsage>What the key is used for.
keys: BTreeMap<String, String>The public key. The object must have exactly one property.
signatures: CrossSigningKeySignaturesSignatures of the key. Only optional for master key.
Implementations
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for CrossSigningKeyimpl Send for CrossSigningKeyimpl Sync for CrossSigningKeyimpl Unpin for CrossSigningKeyimpl UnwindSafe for CrossSigningKeyBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more