Skip to main content

Field

Trait Field 

Source
pub trait Field:
    Ring
    + MultiplicativeGroup
    + Powi
    + Rational {
    // Provided method
    fn half() -> Self { ... }
}
Expand description

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

Provided Methods§

Source

fn half() -> 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