Skip to main content

ICalculatorTableMethods

Trait ICalculatorTableMethods 

Source
pub trait ICalculatorTableMethods: ICalculatorTable {
    // Provided methods
    fn get_value(
        self,
        value: impl Into<i32>,
        min: impl Into<i32>,
        max: impl Into<i32>,
    ) -> i32 { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_value( self, value: impl Into<i32>, min: impl Into<i32>, max: impl Into<i32>, ) -> i32

GetValue(i32, i32, i32) overload

Source

fn ctor(self)

.ctor() overload

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.

Implementors§

Source§

impl<__T: ICalculatorTable> ICalculatorTableMethods for __T

Available on crate feature app-calculatortable only.