pub struct BfvCiphertext {
pub c1: Vec<u8>,
pub c2: Vec<u8>,
}Expand description
BFV ciphertext (pair of polynomials).
Fields§
§c1: Vec<u8>C1 component.
c2: Vec<u8>C2 component.
Trait Implementations§
Source§impl Clone for BfvCiphertext
impl Clone for BfvCiphertext
Source§fn clone(&self) -> BfvCiphertext
fn clone(&self) -> BfvCiphertext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BfvCiphertext
impl Debug for BfvCiphertext
Source§impl<'de> Deserialize<'de> for BfvCiphertext
impl<'de> Deserialize<'de> for BfvCiphertext
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
Auto Trait Implementations§
impl Freeze for BfvCiphertext
impl RefUnwindSafe for BfvCiphertext
impl Send for BfvCiphertext
impl Sync for BfvCiphertext
impl Unpin for BfvCiphertext
impl UnsafeUnpin for BfvCiphertext
impl UnwindSafe for BfvCiphertext
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