Struct matrix_sdk_crypto::olm::PickledCrossSigningIdentity [−][src]
pub struct PickledCrossSigningIdentity {
pub user_id: UserId,
pub shared: bool,
pub pickle: String,
}Expand description
The pickled version of a PrivateCrossSigningIdentity.
Can be used to store the identity.
Fields
user_id: UserIdThe user id of the identity owner.
Have the public keys of the identity been shared.
pickle: StringThe encrypted pickle of the identity.
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 PickledCrossSigningIdentity
impl Send for PickledCrossSigningIdentity
impl Sync for PickledCrossSigningIdentity
impl Unpin for PickledCrossSigningIdentity
impl UnwindSafe for PickledCrossSigningIdentity
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more