Trait Extra

Source
pub trait Extra {
    // Required methods
    fn insert_extra(&mut self, key: String, value: Value) -> Option<Value>;
    fn remove_extra(&mut self, key: &str) -> Option<Value>;
}

Required Methods§

Source

fn insert_extra(&mut self, key: String, value: Value) -> Option<Value>

Source

fn remove_extra(&mut self, key: &str) -> Option<Value>

Implementors§