Trait Inverse

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

Required Methods§

Source

fn inv(self) -> 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.

Implementations on Foreign Types§

Source§

impl Inverse for f32

Source§

fn inv(self) -> Self

Source§

impl Inverse for f64

Source§

fn inv(self) -> Self

Implementors§