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<Kind> for Kind
impl PartialEq<Kind> for Kind
source§impl PartialOrd<Kind> for Kind
impl PartialOrd<Kind> 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 more