Struct concrete_core::specification::parameters::PolynomialSize
source · [−]pub struct PolynomialSize(pub usize);Expand description
The number of coefficients of a polynomial.
Assuming a polynomial $a_0 + a_1X + /dots + a_{N-1}X^{N-1}$, this returns $N$.
Tuple Fields
0: usizeImplementations
sourceimpl PolynomialSize
impl PolynomialSize
sourcepub fn log2(&self) -> PolynomialSizeLog
pub fn log2(&self) -> PolynomialSizeLog
Returns the associated PolynomialSizeLog.
Trait Implementations
sourceimpl Clone for PolynomialSize
impl Clone for PolynomialSize
sourcefn clone(&self) -> PolynomialSize
fn clone(&self) -> PolynomialSize
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PolynomialSize
impl Debug for PolynomialSize
sourceimpl<'de> Deserialize<'de> for PolynomialSize
impl<'de> Deserialize<'de> for PolynomialSize
sourcefn 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
sourceimpl Ord for PolynomialSize
impl Ord for PolynomialSize
sourcefn cmp(&self, other: &PolynomialSize) -> Ordering
fn cmp(&self, other: &PolynomialSize) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<PolynomialSize> for PolynomialSize
impl PartialEq<PolynomialSize> for PolynomialSize
sourcefn eq(&self, other: &PolynomialSize) -> bool
fn eq(&self, other: &PolynomialSize) -> bool
sourceimpl PartialOrd<PolynomialSize> for PolynomialSize
impl PartialOrd<PolynomialSize> for PolynomialSize
sourcefn partial_cmp(&self, other: &PolynomialSize) -> Option<Ordering>
fn partial_cmp(&self, other: &PolynomialSize) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresourceimpl Serialize for PolynomialSize
impl Serialize for PolynomialSize
impl Copy for PolynomialSize
impl Eq for PolynomialSize
impl StructuralEq for PolynomialSize
impl StructuralPartialEq for PolynomialSize
Auto Trait Implementations
impl RefUnwindSafe for PolynomialSize
impl Send for PolynomialSize
impl Sync for PolynomialSize
impl Unpin for PolynomialSize
impl UnwindSafe for PolynomialSize
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more