Trait core_extensions::callable::CallInto[][src]

pub trait CallInto<Params> {
    type Returns;
    fn call_into(self, params: Params) -> Self::Returns;
}

implementable version of ::std::ops::FnOnce.

Associated Types

The return type of this function

Required Methods

calls this function

Implementors