Docs.rs
  • nest-data-source-api-0.3.0
    • nest-data-source-api 0.3.0
    • Docs.rs crate page
    • Apache-2.0
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • github:nolai:operations
    • Gulianrdgd
    • Dependencies
      • actix-web ^4.10.2 normal
      • actix-web-httpauth ^0.8 normal
      • async-trait ^0.1.88 normal
      • libpep ^0.6.9 normal
      • log ^0.4.27 normal
      • oauth-token-service ^0.1.0 normal
      • paas-client ^0.8.3 normal
      • rand ^0.8 normal
      • serde ^1.0.219 normal
      • serde_json ^1 normal
      • serde_repr ^0.1.20 normal
      • tokio ^1.44.1 normal
    • Versions
    • 18.9% of the crate is documented
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

nest_data_source_api0.3.0

HasPEPBatchInfo

Required Methods

  • domain
  • domain_to
  • extra_data
  • participants
  • pseudo_data_points
  • sessions

Implementors

In nest_data_source_api::batch_messages

nest_data_source_api::batch_messages

Trait HasPEPBatchInfo

Source
pub trait HasPEPBatchInfo<T> {
    // Required methods
    fn participants(&self) -> Vec<Vec<EncryptedPseudonym>>;
    fn extra_data(&self) -> Vec<Vec<EncryptedDataPoint>>;
    fn pseudo_data_points(&self) -> Vec<T>;
    fn domain(&self) -> PseudonymizationDomain;
    fn sessions(&self) -> EncryptionContexts;
    fn domain_to(&self) -> PseudonymizationDomain;
}

Required Methods§

Source

fn participants(&self) -> Vec<Vec<EncryptedPseudonym>>

Source

fn extra_data(&self) -> Vec<Vec<EncryptedDataPoint>>

Source

fn pseudo_data_points(&self) -> Vec<T>

Source

fn domain(&self) -> PseudonymizationDomain

Source

fn sessions(&self) -> EncryptionContexts

Source

fn domain_to(&self) -> PseudonymizationDomain

Implementors§

Source§

impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchRequest

Source§

impl HasPEPBatchInfo<PEPPseudoDataPoint> for PEPActivityBatchResponse