[][src]Struct buchberger::F

pub struct F<T>(pub T)
where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
;

Trait Implementations

impl Field for F<NotNan<f32>>[src]

impl Field for F<NotNan<f64>>[src]

impl<T: Clone> Clone for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T: Eq> Eq for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T: Copy> Copy for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T: Debug> Debug for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T: Display> Display for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T> Add<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

type Output = Self

The resulting type after applying the + operator.

impl<T> Sub<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

type Output = Self

The resulting type after applying the - operator.

impl<T> Mul<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

type Output = Self

The resulting type after applying the * operator.

impl<T> Div<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

type Output = Self

The resulting type after applying the / operator.

impl<T> Neg for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

type Output = Self

The resulting type after applying the - operator.

impl<T> AddAssign<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T> SubAssign<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T> MulAssign<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T> DivAssign<F<T>> for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

impl<T> Zero for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

fn set_zero(&mut self)[src]

Sets self to the additive identity element of Self, 0.

impl<T> One for F<T> where
    T: Copy + Sized + Add<Output = T> + Sub<Output = T> + Mul<Output = T> + Div<Output = T> + Eq + Zero + One
[src]

fn set_one(&mut self)[src]

Sets self to the multiplicative identity element of Self, 1.

fn is_one(&self) -> bool where
    Self: PartialEq<Self>, 
[src]

Returns true if self is equal to the multiplicative identity. Read more

Auto Trait Implementations

impl<T> Unpin for F<T> where
    T: Unpin

impl<T> Send for F<T> where
    T: Send

impl<T> Sync for F<T> where
    T: Sync

impl<T> RefUnwindSafe for F<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for F<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]