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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".