pub struct DoneLoginServerKeysOutput {
pub encrypted_master_key: String,
pub encrypted_private_key: String,
pub public_key_string: String,
pub keypair_encrypt_alg: String,
pub encrypted_sign_key: String,
pub verify_key_string: String,
pub keypair_sign_alg: String,
pub keypair_encrypt_id: EncryptionKeyPairId,
pub keypair_sign_id: SignKeyPairId,
pub user_id: UserId,
pub device_id: DeviceId,
pub user_group_id: GroupId,
}Fields§
§encrypted_master_key: String§encrypted_private_key: String§public_key_string: String§keypair_encrypt_alg: String§encrypted_sign_key: String§verify_key_string: String§keypair_sign_alg: String§keypair_encrypt_id: EncryptionKeyPairId§keypair_sign_id: SignKeyPairId§user_id: UserId§device_id: DeviceId§user_group_id: GroupIdImplementations§
Trait Implementations§
Source§impl Clone for DoneLoginServerKeysOutput
impl Clone for DoneLoginServerKeysOutput
Source§fn clone(&self) -> DoneLoginServerKeysOutput
fn clone(&self) -> DoneLoginServerKeysOutput
Returns a duplicate 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 DoneLoginServerKeysOutput
impl<'de> Deserialize<'de> for DoneLoginServerKeysOutput
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
Auto Trait Implementations§
impl Freeze for DoneLoginServerKeysOutput
impl RefUnwindSafe for DoneLoginServerKeysOutput
impl Send for DoneLoginServerKeysOutput
impl Sync for DoneLoginServerKeysOutput
impl Unpin for DoneLoginServerKeysOutput
impl UnwindSafe for DoneLoginServerKeysOutput
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
Mutably borrows from an owned value. Read more