pub trait MutFieldGetter<Context, Tag>: FieldGetter<Context, Tag> {
// Required method
fn get_field_mut(
context: &mut Context,
tag: PhantomData<Tag>,
) -> &mut Self::Value;
}Required Methods§
fn get_field_mut( context: &mut Context, tag: PhantomData<Tag>, ) -> &mut Self::Value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.