Skip to main content

EvalOnce

Trait EvalOnce 

Source
pub trait EvalOnce {
    type Output;

    // Required method
    fn eval_once(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn eval_once(self) -> Self::Output

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl EvalOnce for f32

Source§

type Output = f32

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for f64

Source§

type Output = f64

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for i8

Source§

type Output = i8

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for i16

Source§

type Output = i16

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for i32

Source§

type Output = i32

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for i64

Source§

type Output = i64

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for i128

Source§

impl EvalOnce for isize

Source§

impl EvalOnce for u8

Source§

type Output = u8

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for u16

Source§

type Output = u16

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for u32

Source§

type Output = u32

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for u64

Source§

type Output = u64

Source§

fn eval_once(self) -> Self::Output

Source§

impl EvalOnce for u128

Source§

impl EvalOnce for usize

Implementors§

Source§

impl<T> EvalOnce for Constant<T>

Source§

impl<T> EvalOnce for Dual<T>

Source§

impl<T> EvalOnce for Variable<T>
where T: Default,