pub struct PEPPseudoDataPoint {
pub participant: Vec<EncryptedPseudonym>,
pub extra_data: Vec<EncryptedDataPoint>,
}
Fields§
§participant: Vec<EncryptedPseudonym>
§extra_data: Vec<EncryptedDataPoint>
Trait Implementations§
Source§impl Clone for PEPPseudoDataPoint
impl Clone for PEPPseudoDataPoint
Source§fn clone(&self) -> PEPPseudoDataPoint
fn clone(&self) -> PEPPseudoDataPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PEPPseudoDataPoint
impl Debug for PEPPseudoDataPoint
Source§impl<'de> Deserialize<'de> for PEPPseudoDataPoint
impl<'de> Deserialize<'de> for PEPPseudoDataPoint
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
Source§impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchRequest
impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchRequest
fn participants(&self) -> Vec<Vec<EncryptedPseudonym>>
fn extra_data(&self) -> Vec<Vec<EncryptedDataPoint>>
fn pseudo_data_points(&self) -> Vec<PEPPseudoDataPoint>
fn domain(&self) -> PseudonymizationDomain
fn sessions(&self) -> EncryptionContexts
fn domain_to(&self) -> PseudonymizationDomain
Source§impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchResponse
impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchResponse
fn participants(&self) -> Vec<Vec<EncryptedPseudonym>>
fn extra_data(&self) -> Vec<Vec<EncryptedDataPoint>>
fn pseudo_data_points(&self) -> Vec<PEPPseudoDataPoint>
fn domain(&self) -> PseudonymizationDomain
fn sessions(&self) -> EncryptionContexts
fn domain_to(&self) -> PseudonymizationDomain
Source§impl PEPBatchMessageType<PEPPseudoDataPoint, PseudoDataPoint> for ActivityBatchRequestMessageType
impl PEPBatchMessageType<PEPPseudoDataPoint, PseudoDataPoint> for ActivityBatchRequestMessageType
type PEPBatchMessage = PEPActivityBatchRequest
type BatchMessage = ActivityBatchRequest
async fn pack<R: RngCore + CryptoRng>( request: Self::BatchMessage, domain_to: PseudonymizationDomain, ps: &mut PseudonymService, rng: &mut R, ) -> Result<Self::PEPBatchMessage, ApiError>
async fn unpack( request: Self::PEPBatchMessage, ps: &mut PseudonymService, ) -> Result<Self::BatchMessage, ApiError>
Source§impl PEPBatchMessageType<PEPPseudoDataPoint, PseudoDataPoint> for ActivityBatchResponseMessageType
impl PEPBatchMessageType<PEPPseudoDataPoint, PseudoDataPoint> for ActivityBatchResponseMessageType
type PEPBatchMessage = PEPActivityBatchResponse
type BatchMessage = ActivityBatchResponse
async fn pack<R: RngCore + CryptoRng>( request: Self::BatchMessage, domain_to: PseudonymizationDomain, ps: &mut PseudonymService, rng: &mut R, ) -> Result<Self::PEPBatchMessage, ApiError>
async fn unpack( request: Self::PEPBatchMessage, ps: &mut PseudonymService, ) -> Result<Self::BatchMessage, ApiError>
Auto Trait Implementations§
impl Freeze for PEPPseudoDataPoint
impl RefUnwindSafe for PEPPseudoDataPoint
impl Send for PEPPseudoDataPoint
impl Sync for PEPPseudoDataPoint
impl Unpin for PEPPseudoDataPoint
impl UnwindSafe for PEPPseudoDataPoint
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