Trait WeakMul

Source
pub trait WeakMul {
    // Required method
    fn weak_mul(self, other: f64) -> Self;
}

Required Methods§

Source

fn weak_mul(self, other: f64) -> 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 WeakMul for f32

Source§

fn weak_mul(self, other: f64) -> Self

Source§

impl WeakMul for f64

Source§

fn weak_mul(self, other: f64) -> Self

Source§

impl WeakMul for i64

Source§

fn weak_mul(self, other: f64) -> Self

Implementors§