pub struct LongTranscryptionBatchRequest {
pub encrypted: Vec<LongEncryptedRecord>,
pub domain_from: PseudonymizationDomain,
pub domain_to: PseudonymizationDomain,
pub session_from: EncryptionContext,
pub session_to: EncryptionContext,
}Expand description
An API request to transcrypt a single encrypted pseudonym.
Fields§
§encrypted: Vec<LongEncryptedRecord>The encrypted data.
domain_from: PseudonymizationDomainThe domain of the encrypted pseudonyms.
domain_to: PseudonymizationDomainThe domain to transcrypt the pseudonyms to.
session_from: EncryptionContextThe session the messages were encrypted in associated with this server.
session_to: EncryptionContextThe session the messages should be decryptable in associated with this server.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LongTranscryptionBatchRequest
impl<'de> Deserialize<'de> for LongTranscryptionBatchRequest
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 LongTranscryptionBatchRequest
impl RefUnwindSafe for LongTranscryptionBatchRequest
impl Send for LongTranscryptionBatchRequest
impl Sync for LongTranscryptionBatchRequest
impl Unpin for LongTranscryptionBatchRequest
impl UnwindSafe for LongTranscryptionBatchRequest
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