pub trait CallMut<A, O, E> {
// Required method
fn call_mut(&mut self, args: A) -> Result<O, Exception>;
}
Expand description
A trait for a compiled function that can be called.
pub trait CallMut<A, O, E> {
// Required method
fn call_mut(&mut self, args: A) -> Result<O, Exception>;
}
A trait for a compiled function that can be called.