Skip to main content

BatchEncryptable

Trait BatchEncryptable 

Source
pub trait BatchEncryptable: Encryptable + Clone {
    // Required method
    fn preprocess_batch(items: &[Self]) -> Result<Vec<Self>, BatchError>;
}

Required Methods§

Source

fn preprocess_batch(items: &[Self]) -> Result<Vec<Self>, BatchError>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl BatchEncryptable for Attribute

Available on crate feature batch only.
Source§

impl BatchEncryptable for LongAttribute

Available on crate feature batch only.
Source§

impl BatchEncryptable for LongPseudonym

Available on crate feature batch only.
Source§

impl BatchEncryptable for LongRecord

Available on crate feature batch only.
Source§

impl BatchEncryptable for PEPJSONValue

Available on crate feature batch only.
Source§

impl BatchEncryptable for Pseudonym

Available on crate feature batch only.
Source§

impl BatchEncryptable for Record

Available on crate feature batch only.