Trait GetFieldMut

Source
pub trait GetFieldMut<'a, K, M> {
    // Required method
    fn get_field_mut<T>(self, key: K) -> Option<&'a mut T>
       where T: Reflect;
}
Expand description

Helper trait for mutably accessing and downcasting fields on reflected values.

Required Methods§

Source

fn get_field_mut<T>(self, key: K) -> Option<&'a mut T>
where T: Reflect,

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.

Implementors§