logo
pub trait Injector {
    fn set(&mut self, key: &str, value: String);
}
Expand description

Injector provides an interface for adding fields from an underlying struct like HashMap

Required Methods

Add a key and value to the underlying data.

Implementations on Foreign Types

Set a key and value in the HashMap.

Implementors