pub struct QuinticTrinomial;Expand description
Marker for the trinomial reducer X^5 + X^2 - 1.
Trait Implementations§
Source§impl Clone for QuinticTrinomial
impl Clone for QuinticTrinomial
Source§fn clone(&self) -> QuinticTrinomial
fn clone(&self) -> QuinticTrinomial
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 Copy for QuinticTrinomial
Source§impl Debug for QuinticTrinomial
impl Debug for QuinticTrinomial
impl Eq for QuinticTrinomial
impl ExtensionShape for QuinticTrinomial
Source§impl Hash for QuinticTrinomial
impl Hash for QuinticTrinomial
Source§impl Ord for QuinticTrinomial
impl Ord for QuinticTrinomial
Source§fn cmp(&self, other: &QuinticTrinomial) -> Ordering
fn cmp(&self, other: &QuinticTrinomial) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for QuinticTrinomial
impl PartialEq for QuinticTrinomial
Source§fn eq(&self, other: &QuinticTrinomial) -> bool
fn eq(&self, other: &QuinticTrinomial) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for QuinticTrinomial
impl PartialOrd for QuinticTrinomial
impl StructuralPartialEq for QuinticTrinomial
Auto Trait Implementations§
impl Freeze for QuinticTrinomial
impl RefUnwindSafe for QuinticTrinomial
impl Send for QuinticTrinomial
impl Sync for QuinticTrinomial
impl Unpin for QuinticTrinomial
impl UnsafeUnpin for QuinticTrinomial
impl UnwindSafe for QuinticTrinomial
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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