Trait NormalizedMultiply

Source
pub trait NormalizedMultiply
where Self: Num,
{ // Required method fn mul_normalized(self, other: Self) -> Self; }

Required Methods§

Source

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

正規化された値を計算するメソッド

§Arguments
  • self - 自身の値
  • other - 他の値
§Returns
  • N - 正規化された値

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 NormalizedMultiply for f32

Source§

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

Source§

impl NormalizedMultiply for f64

Source§

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

Source§

impl NormalizedMultiply for u8

Source§

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

Source§

impl NormalizedMultiply for u16

Source§

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

Source§

impl NormalizedMultiply for u32

Source§

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

Source§

impl NormalizedMultiply for u64

Source§

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

Implementors§