pub trait CustomFunctionMut {
// Provided methods
fn insert_function(&mut self, _func: StructCustomFunction) -> Result<()> { ... }
fn delete_function(&mut self, _func_name: &str) -> Result<()> { ... }
}Provided Methods§
fn insert_function(&mut self, _func: StructCustomFunction) -> Result<()>
fn delete_function(&mut self, _func_name: &str) -> Result<()>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".