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

Required Methods§

source

fn append(&mut self, context: Self)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<M> AnyValueMut for Value<M>