pub struct ConfigMap {
pub keys: Vec<(String, String)>,
}
Expand description
Represents a collection of keys, mapped to their values.
Fields§
§keys: Vec<(String, String)>
A map of setting name to value.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConfigMap
impl RefUnwindSafe for ConfigMap
impl Send for ConfigMap
impl Sync for ConfigMap
impl Unpin for ConfigMap
impl UnwindSafe for ConfigMap
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more