pub struct LongRekeyRequest {
pub encrypted_attribute: LongEncryptedAttribute,
pub session_from: EncryptionContext,
pub session_to: EncryptionContext,
}Expand description
An API request to transcrypt a single encrypted attribute.
Fields§
§encrypted_attribute: LongEncryptedAttributeThe encrypted data.
session_from: EncryptionContextThe session the attribute was encrypted in associated with this server.
session_to: EncryptionContextThe session the attribute should be decryptable in associated with this server.
Trait Implementations§
Source§impl Debug for LongRekeyRequest
impl Debug for LongRekeyRequest
Source§impl<'de> Deserialize<'de> for LongRekeyRequest
impl<'de> Deserialize<'de> for LongRekeyRequest
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 LongRekeyRequest
impl RefUnwindSafe for LongRekeyRequest
impl Send for LongRekeyRequest
impl Sync for LongRekeyRequest
impl Unpin for LongRekeyRequest
impl UnwindSafe for LongRekeyRequest
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