Field

Trait Field 

Source
pub trait Field:
    Ring
    + MultiplicativeGroup
    + Powi {
    // Provided methods
    fn half() -> Self { ... }
    fn two() -> Self { ... }
    fn three() -> Self { ... }
    fn four() -> Self { ... }
    fn five() -> Self { ... }
    fn six() -> Self { ... }
    fn seven() -> Self { ... }
    fn eight() -> Self { ... }
    fn nine() -> Self { ... }
    fn ten() -> Self { ... }
}
Expand description

A (commutative) Ring where $1 \neq 0$ and all non-zero elements are invertible

Provided Methods§

Source

fn half() -> Self

Source

fn two() -> Self

Source

fn three() -> Self

Source

fn four() -> Self

Source

fn five() -> Self

Source

fn six() -> Self

Source

fn seven() -> Self

Source

fn eight() -> Self

Source

fn nine() -> Self

Source

fn ten() -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> Field for T