pub trait IntegerTypeExt {
    // Required method
    fn min_max(&self) -> (i64, i64);
}
Expand description

Extends the IntegerType with convenience methods

Required Methods§

source

fn min_max(&self) -> (i64, i64)

Returns the minimum and maximum information as a tuple of i64 If there is no minimum or maximum, the minimum i64 or maximum i64 values are used.

Implementations on Foreign Types§

source§

impl IntegerTypeExt for IntegerType

source§

fn min_max(&self) -> (i64, i64)

Implementors§