Enum gix_config::source::Kind
source · pub enum Kind {
GitInstallation,
System,
Global,
Repository,
Override,
}
Expand description
The category of a Source
, in order of ascending precedence.
Variants§
GitInstallation
A special configuration file that ships with the git installation, and is thus tied to the used git binary.
System
A source shared for the entire system.
Global
Application specific configuration unique for each user of the System
.
Repository
Configuration relevant only to the repository, possibly including the worktree.
Override
Configuration specified after all other configuration was loaded for the purpose of overrides.
Implementations§
Trait Implementations§
source§impl Ord for Kind
impl Ord for Kind
source§impl PartialEq for Kind
impl PartialEq for Kind
source§impl PartialOrd for Kind
impl PartialOrd for Kind
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Kind
impl Eq for Kind
impl StructuralPartialEq for Kind
Auto Trait Implementations§
impl Freeze for Kind
impl RefUnwindSafe for Kind
impl Send for Kind
impl Sync for Kind
impl Unpin for Kind
impl UnwindSafe for Kind
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