Trait CustomFunctionMut
Source pub trait CustomFunctionMut {
// Provided methods
fn insert_function<'life0, 'async_trait>(
&'life0 mut self,
_func: StructCustomFunction,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait { ... }
fn delete_function<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_func_name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
}