pub struct CubicTrinomial;Expand description
Marker for the trinomial reducer X^3 - X - 1.
Trait Implementations§
Source§impl Clone for CubicTrinomial
impl Clone for CubicTrinomial
Source§fn clone(&self) -> CubicTrinomial
fn clone(&self) -> CubicTrinomial
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 CubicTrinomial
Source§impl Debug for CubicTrinomial
impl Debug for CubicTrinomial
impl Eq for CubicTrinomial
impl ExtensionShape for CubicTrinomial
Source§impl Hash for CubicTrinomial
impl Hash for CubicTrinomial
Source§impl Ord for CubicTrinomial
impl Ord for CubicTrinomial
Source§fn cmp(&self, other: &CubicTrinomial) -> Ordering
fn cmp(&self, other: &CubicTrinomial) -> 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 CubicTrinomial
impl PartialEq for CubicTrinomial
Source§fn eq(&self, other: &CubicTrinomial) -> bool
fn eq(&self, other: &CubicTrinomial) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CubicTrinomial
impl PartialOrd for CubicTrinomial
impl StructuralPartialEq for CubicTrinomial
Auto Trait Implementations§
impl Freeze for CubicTrinomial
impl RefUnwindSafe for CubicTrinomial
impl Send for CubicTrinomial
impl Sync for CubicTrinomial
impl Unpin for CubicTrinomial
impl UnsafeUnpin for CubicTrinomial
impl UnwindSafe for CubicTrinomial
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