Trait r::object::ViewMut

source ·
pub trait ViewMut {
    // Required method
    fn view_mut(&self) -> Self;
}
Expand description

View an object mutably. This trait drives the assignment into vectors and lists, primarily via the Data struct.

Required Methods§

source

fn view_mut(&self) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl ViewMut for Obj

source§

impl<T: Clone> ViewMut for Rep<T>

source§

impl<T: Clone> ViewMut for CowObj<T>