Trait gemm_common::simd::NullaryFnOnce

source ·
pub trait NullaryFnOnce {
    type Output;

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

Required Associated Types§

Required Methods§

source

fn call(self) -> Self::Output

Implementors§

source§

impl<R, F> NullaryFnOnce for F
where F: FnOnce() -> R,

§

type Output = R