Skip to main content

Ring

Trait Ring 

Source
pub trait Ring:
    Clone
    + Debug
    + Send
    + Sync
    + 'static {
    // Required methods
    fn add(self, other: Self) -> Self;
    fn sub(self, other: Self) -> Self;
    fn mul(self, other: Self) -> Self;
    fn neg(self) -> Self;
}

Required Methods§

Source

fn add(self, other: Self) -> Self

Source

fn sub(self, other: Self) -> Self

Source

fn mul(self, other: Self) -> Self

Source

fn neg(self) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§