pub trait WithCtxMut<'s, 'str: 's>: WithCtx<'s, 's, 'str> {
// Required method
fn ctx_mut(&'s mut self) -> &'s mut Context<'str>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".