pub enum ConfigFileSelection {
Disabled,
Default,
Files(Vec<PathBuf>),
}Expand description
Config file selection mode for daemon startup.
Variants§
Disabled
Do not load config files.
Default
Load tmux’s default config search path.
Files(Vec<PathBuf>)
Load the explicit -f files in order.
Trait Implementations§
Source§impl Clone for ConfigFileSelection
impl Clone for ConfigFileSelection
Source§fn clone(&self) -> ConfigFileSelection
fn clone(&self) -> ConfigFileSelection
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 ConfigFileSelection
impl Debug for ConfigFileSelection
Source§impl PartialEq for ConfigFileSelection
impl PartialEq for ConfigFileSelection
Source§fn eq(&self, other: &ConfigFileSelection) -> bool
fn eq(&self, other: &ConfigFileSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConfigFileSelection
impl StructuralPartialEq for ConfigFileSelection
Auto Trait Implementations§
impl Freeze for ConfigFileSelection
impl RefUnwindSafe for ConfigFileSelection
impl Send for ConfigFileSelection
impl Sync for ConfigFileSelection
impl Unpin for ConfigFileSelection
impl UnsafeUnpin for ConfigFileSelection
impl UnwindSafe for ConfigFileSelection
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