pub struct RuntimeConfig {
pub enable_color_provider: bool,
pub color_only_on_variables: bool,
pub lookup_files: Option<Vec<String>>,
pub ignore_globs: Option<Vec<String>>,
pub path_display_mode: PathDisplayMode,
pub path_display_abbrev_length: usize,
pub undefined_var_fallback: UndefinedVarFallbackMode,
}Fields§
§enable_color_provider: bool§color_only_on_variables: bool§lookup_files: Option<Vec<String>>§ignore_globs: Option<Vec<String>>§path_display_mode: PathDisplayMode§path_display_abbrev_length: usize§undefined_var_fallback: UndefinedVarFallbackModeTrait Implementations§
Source§impl Clone for RuntimeConfig
impl Clone for RuntimeConfig
Source§fn clone(&self) -> RuntimeConfig
fn clone(&self) -> RuntimeConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RuntimeConfig
impl RefUnwindSafe for RuntimeConfig
impl Send for RuntimeConfig
impl Sync for RuntimeConfig
impl Unpin for RuntimeConfig
impl UnwindSafe for RuntimeConfig
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