Trait rerun::external::eframe::egui::NumExt

source ·
pub trait NumExt {
    // Required methods
    fn at_least(self, lower_limit: Self) -> Self;
    fn at_most(self, upper_limit: Self) -> Self;
}
Expand description

Extends f32, Vec2 etc with at_least and at_most as aliases for max and min.

Required Methods§

source

fn at_least(self, lower_limit: Self) -> Self

More readable version of self.max(lower_limit)

source

fn at_most(self, upper_limit: Self) -> Self

More readable version of self.min(upper_limit)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl NumExt for f32

source§

fn at_least(self, lower_limit: f32) -> f32

source§

fn at_most(self, upper_limit: f32) -> f32

source§

impl NumExt for f64

source§

fn at_least(self, lower_limit: f64) -> f64

source§

fn at_most(self, upper_limit: f64) -> f64

source§

impl NumExt for i8

source§

fn at_least(self, lower_limit: i8) -> i8

source§

fn at_most(self, upper_limit: i8) -> i8

source§

impl NumExt for i16

source§

fn at_least(self, lower_limit: i16) -> i16

source§

fn at_most(self, upper_limit: i16) -> i16

source§

impl NumExt for i32

source§

fn at_least(self, lower_limit: i32) -> i32

source§

fn at_most(self, upper_limit: i32) -> i32

source§

impl NumExt for i64

source§

fn at_least(self, lower_limit: i64) -> i64

source§

fn at_most(self, upper_limit: i64) -> i64

source§

impl NumExt for i128

source§

fn at_least(self, lower_limit: i128) -> i128

source§

fn at_most(self, upper_limit: i128) -> i128

source§

impl NumExt for isize

source§

fn at_least(self, lower_limit: isize) -> isize

source§

fn at_most(self, upper_limit: isize) -> isize

source§

impl NumExt for u8

source§

fn at_least(self, lower_limit: u8) -> u8

source§

fn at_most(self, upper_limit: u8) -> u8

source§

impl NumExt for u16

source§

fn at_least(self, lower_limit: u16) -> u16

source§

fn at_most(self, upper_limit: u16) -> u16

source§

impl NumExt for u32

source§

fn at_least(self, lower_limit: u32) -> u32

source§

fn at_most(self, upper_limit: u32) -> u32

source§

impl NumExt for u64

source§

fn at_least(self, lower_limit: u64) -> u64

source§

fn at_most(self, upper_limit: u64) -> u64

source§

impl NumExt for u128

source§

fn at_least(self, lower_limit: u128) -> u128

source§

fn at_most(self, upper_limit: u128) -> u128

source§

impl NumExt for usize

source§

fn at_least(self, lower_limit: usize) -> usize

source§

fn at_most(self, upper_limit: usize) -> usize

Implementors§