Trait ValueAsMutObject

Source
pub trait ValueAsMutObject {
    type Object;

    // Required method
    fn as_object_mut(&mut self) -> Option<&mut Self::Object>;
}
Expand description

Mutatability for Object values

Required Associated Types§

Source

type Object

The type for Objects

Required Methods§

Source

fn as_object_mut(&mut self) -> Option<&mut Self::Object>

Tries to represent the value as an object and returns a mutable reference to it

Implementors§