Skip to main content

Group

Trait Group 

Source
pub trait Group: Sized + Add<Self, Output = Self> {
    // Required method
    fn zero() -> Self;
}

Required Methods§

Source

fn zero() -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Group for f32

Source§

fn zero() -> Self

Source§

impl Group for f64

Source§

fn zero() -> Self

Implementors§