Enum git2::ConfigLevel
source · [−]pub enum ConfigLevel {
ProgramData,
System,
XDG,
Global,
Local,
App,
Highest,
}
Expand description
An enumeration of the possible priority levels of a config file.
The levels corresponding to the escalation logic (higher to lower) when searching for config entries.
Variants
ProgramData
System-wide on Windows, for compatibility with portable git
System
System-wide configuration file, e.g. /etc/gitconfig
XDG
XDG-compatible configuration file, e.g. ~/.config/git/config
Global
User-specific configuration, e.g. ~/.gitconfig
Local
Repository specific config, e.g. $PWD/.git/config
App
Application specific configuration file
Highest
Highest level available
Implementations
sourceimpl ConfigLevel
impl ConfigLevel
sourcepub fn from_raw(raw: git_config_level_t) -> ConfigLevel
pub fn from_raw(raw: git_config_level_t) -> ConfigLevel
Converts a raw configuration level to a ConfigLevel
Trait Implementations
sourceimpl Clone for ConfigLevel
impl Clone for ConfigLevel
sourcefn clone(&self) -> ConfigLevel
fn clone(&self) -> ConfigLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ConfigLevel
impl Debug for ConfigLevel
sourceimpl PartialEq<ConfigLevel> for ConfigLevel
impl PartialEq<ConfigLevel> for ConfigLevel
impl Copy for ConfigLevel
impl Eq for ConfigLevel
impl StructuralEq for ConfigLevel
impl StructuralPartialEq for ConfigLevel
Auto Trait Implementations
impl RefUnwindSafe for ConfigLevel
impl Send for ConfigLevel
impl Sync for ConfigLevel
impl Unpin for ConfigLevel
impl UnwindSafe for ConfigLevel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more