pub struct ManyLookupTable<C: Container<Element = u64>> {
pub acc: GlweCiphertext<C>,
pub input_max_degree: MaxDegree,
pub sample_extraction_stride: usize,
pub per_function_output_degree: Vec<Degree>,
}Fields§
§acc: GlweCiphertext<C>§input_max_degree: MaxDegree§sample_extraction_stride: usize§per_function_output_degree: Vec<Degree>Implementations§
Source§impl<C: Container<Element = u64>> ManyLookupTable<C>
impl<C: Container<Element = u64>> ManyLookupTable<C>
pub fn function_count(&self) -> usize
Trait Implementations§
Source§impl<C: Clone + Container<Element = u64>> Clone for ManyLookupTable<C>
impl<C: Clone + Container<Element = u64>> Clone for ManyLookupTable<C>
Source§fn clone(&self) -> ManyLookupTable<C>
fn clone(&self) -> ManyLookupTable<C>
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 moreimpl<C: Eq + Container<Element = u64>> Eq for ManyLookupTable<C>
impl<C: PartialEq + Container<Element = u64>> StructuralPartialEq for ManyLookupTable<C>
Auto Trait Implementations§
impl<C> Freeze for ManyLookupTable<C>where
C: Freeze,
impl<C> RefUnwindSafe for ManyLookupTable<C>where
C: RefUnwindSafe,
impl<C> Send for ManyLookupTable<C>where
C: Send,
impl<C> Sync for ManyLookupTable<C>where
C: Sync,
impl<C> Unpin for ManyLookupTable<C>where
C: Unpin,
impl<C> UnsafeUnpin for ManyLookupTable<C>where
C: UnsafeUnpin,
impl<C> UnwindSafe for ManyLookupTable<C>where
C: UnwindSafe,
Blanket Implementations§
impl<T> Annotation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more