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