pub struct EvaluationKey {
pub encryptions: Vec<Ciphertext>,
/* private fields */
}Expand description
Evaluation key: encryption of each bit of the secret key.
Fields§
§encryptions: Vec<Ciphertext>Trait Implementations§
Source§impl Clone for EvaluationKey
impl Clone for EvaluationKey
Source§fn clone(&self) -> EvaluationKey
fn clone(&self) -> EvaluationKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EvaluationKey
impl RefUnwindSafe for EvaluationKey
impl Send for EvaluationKey
impl Sync for EvaluationKey
impl Unpin for EvaluationKey
impl UnwindSafe for EvaluationKey
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