Signed

Trait Signed 

Source
pub trait Signed {
    // Required method
    fn eabs(self) -> Self;
}

Required Methods§

Source

fn eabs(self) -> Self

Modulo operation

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.

Implementations on Foreign Types§

Source§

impl Signed for f32

Source§

fn eabs(self) -> Self

Source§

impl Signed for f64

Source§

fn eabs(self) -> Self

Implementors§