pub trait DivisionRing: Ring {
    fn recip(self) -> Self;

    fn left_div(self, other: Self) -> Self
    where
        Self: Sized
, { ... } fn right_div(self, other: Self) -> Self
    where
        Self: Sized
, { ... } }

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§