pub trait AnyValueMut {
    // Required method
    fn append(&mut self, context: Self);
}

Required Methods§

source

fn append(&mut self, context: Self)

Implementors§

source§

impl<M> AnyValueMut for Value<M>