pub trait ParamMaybeMut<T> {
// Required method
fn param_maybe_mut(&mut self) -> Option<&mut T>;
}
Expand description
Item of type T may have been set in a certain_map slot and returns Option<&mut T>.
pub trait ParamMaybeMut<T> {
// Required method
fn param_maybe_mut(&mut self) -> Option<&mut T>;
}
Item of type T may have been set in a certain_map slot and returns Option<&mut T>.