pub enum LoadedConfig {
Agent(AgentConfig),
Mode(ModeConfig),
Command(CommandConfig),
}Expand description
Loaded configuration (can be any of the three types)
Variants§
Agent(AgentConfig)
Loaded agent configuration
Mode(ModeConfig)
Loaded mode configuration
Command(CommandConfig)
Loaded command configuration
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadedConfig
impl RefUnwindSafe for LoadedConfig
impl Send for LoadedConfig
impl Sync for LoadedConfig
impl Unpin for LoadedConfig
impl UnwindSafe for LoadedConfig
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