Trait libflo_std::Func [] [src]

pub trait Func: Send + Sync {
    fn get_type(&self) -> (Parameter, Parameter);
    unsafe fn call(&self, input: Input) -> Result<Output, Error>;
    fn clone_into_box(&self) -> Box<Func + 'static>;
}

Required Methods

Implementors