[][src]Trait rustofi::RustofiCallback

pub trait RustofiCallback<T>: FnMut(&T) -> RustofiResult {
    fn clone_boxed(&self) -> Box<dyn RustofiCallback<T>>;
}

Wrapper around a callback that returns a RustofiResult

Required methods

fn clone_boxed(&self) -> Box<dyn RustofiCallback<T>>

Loading content...

Implementors

impl<T, C> RustofiCallback<T> for C where
    C: 'static + Clone + FnMut(&T) -> RustofiResult
[src]

Loading content...