pub trait BatchEncryptable: Encryptable + Clone {
// Required method
fn preprocess_batch(items: &[Self]) -> Result<Vec<Self>, BatchError>;
}Required Methods§
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§
impl BatchEncryptable for Attribute
Available on crate feature
batch only.impl BatchEncryptable for LongAttribute
Available on crate feature
batch only.impl BatchEncryptable for LongPseudonym
Available on crate feature
batch only.impl BatchEncryptable for LongRecord
Available on crate feature
batch only.impl BatchEncryptable for PEPJSONValue
Available on crate feature
batch only.impl BatchEncryptable for Pseudonym
Available on crate feature
batch only.impl BatchEncryptable for Record
Available on crate feature
batch only.