pub struct Field<T>(/* private fields */);Trait Implementations§
Source§impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Associativity<T> for Field<T>
impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Associativity<T> for Field<T>
fn verify_associativity_add(&self, b: &Self, c: &Self) -> bool
fn verify_associativity_mul(&self, b: &Self, c: &Self) -> bool
Source§impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Commutativity<T> for Field<T>
impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Commutativity<T> for Field<T>
fn verify_commutativity_add(&self, other: &Self) -> bool
fn verify_commutativity_mul(&self, other: &Self) -> bool
Source§impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Distributivity<T> for Field<T>
impl<T: Add<Output = T> + Mul<Output = T> + Copy + PartialEq> Distributivity<T> for Field<T>
fn verify_distributivity(&self, b: &Self, c: &Self) -> bool
Source§impl Identity<f32> for Field<f32>
impl Identity<f32> for Field<f32>
fn verify_additive_identity(&self, identity: &f32) -> bool
fn verify_multiplicative_identity(&self, identity: &f32) -> bool
fn get_additive_identity() -> f32
fn get_multiplicative_identity() -> f32
impl<T: Copy> Copy for Field<T>
impl<T> StructuralPartialEq for Field<T>
Auto Trait Implementations§
impl<T> Freeze for Field<T>where
T: Freeze,
impl<T> RefUnwindSafe for Field<T>where
T: RefUnwindSafe,
impl<T> Send for Field<T>where
T: Send,
impl<T> Sync for Field<T>where
T: Sync,
impl<T> Unpin for Field<T>where
T: Unpin,
impl<T> UnwindSafe for Field<T>where
T: UnwindSafe,
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