pub enum AutoStartConfigSelection {
Disabled,
Default,
Files(Vec<PathBuf>),
}Expand description
Config file selection mode for a newly auto-started hidden daemon.
Variants§
Disabled
Do not load startup config files.
Default
Load RMUX’s default config search path.
Files(Vec<PathBuf>)
Load these explicit config files in order.
Trait Implementations§
Source§impl Clone for AutoStartConfigSelection
impl Clone for AutoStartConfigSelection
Source§fn clone(&self) -> AutoStartConfigSelection
fn clone(&self) -> AutoStartConfigSelection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoStartConfigSelection
impl Debug for AutoStartConfigSelection
Source§impl PartialEq for AutoStartConfigSelection
impl PartialEq for AutoStartConfigSelection
Source§fn eq(&self, other: &AutoStartConfigSelection) -> bool
fn eq(&self, other: &AutoStartConfigSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AutoStartConfigSelection
impl StructuralPartialEq for AutoStartConfigSelection
Auto Trait Implementations§
impl Freeze for AutoStartConfigSelection
impl RefUnwindSafe for AutoStartConfigSelection
impl Send for AutoStartConfigSelection
impl Sync for AutoStartConfigSelection
impl Unpin for AutoStartConfigSelection
impl UnsafeUnpin for AutoStartConfigSelection
impl UnwindSafe for AutoStartConfigSelection
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