Trait NormalizedBounded

Source
pub trait NormalizedBounded
where Self: Num,
{ // Required methods fn min_normalized() -> Self; fn max_normalized() -> Self; }

Required Methods§

Source

fn min_normalized() -> Self

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

§Arguments
  • self - 自身の値
§Returns
  • N - 正規化された最小値
Source

fn max_normalized() -> Self

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

§Arguments
  • self - 自身の値
§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 NormalizedBounded for f32

Source§

impl NormalizedBounded for f64

Source§

impl NormalizedBounded for u8

Source§

impl NormalizedBounded for u16

Source§

impl NormalizedBounded for u32

Source§

impl NormalizedBounded for u64

Implementors§