pub struct PseudonymizationBatchResponse {
pub encrypted_pseudonyms: Vec<EncryptedPseudonym>,
}
Fields§
§encrypted_pseudonyms: Vec<EncryptedPseudonym>
The transcrypted pseudonyms. Watch out: the order of the encrypted pseudonyms will be randomly permuted to break linkability.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PseudonymizationBatchResponse
impl<'de> Deserialize<'de> for PseudonymizationBatchResponse
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 PseudonymizationBatchResponse
impl RefUnwindSafe for PseudonymizationBatchResponse
impl Send for PseudonymizationBatchResponse
impl Sync for PseudonymizationBatchResponse
impl Unpin for PseudonymizationBatchResponse
impl UnwindSafe for PseudonymizationBatchResponse
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