pub struct ConfigManager {
pub profiles: Vec<ConfigProfile>,
pub active: String,
}Expand description
Top-level configuration manager holding multiple named profiles.
Fields§
§profiles: Vec<ConfigProfile>Ordered list of profiles.
active: StringName of the currently active profile.
Auto Trait Implementations§
impl Freeze for ConfigManager
impl RefUnwindSafe for ConfigManager
impl Send for ConfigManager
impl Sync for ConfigManager
impl Unpin for ConfigManager
impl UnsafeUnpin for ConfigManager
impl UnwindSafe for ConfigManager
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