Struct gix_config::parse::Key
source · pub struct Key<'a> {
pub section_name: &'a str,
pub subsection_name: Option<&'a BStr>,
pub value_name: &'a str,
}
Expand description
An unvalidated parse result of parsing input like remote.origin.url
or core.bare
.
Fields§
§section_name: &'a str
The name of the section, like core
in core.bare
.
subsection_name: Option<&'a BStr>
The name of the sub-section, like origin
in remote.origin.url
.
value_name: &'a str
The name of the section key, like url
in remote.origin.url
.
Trait Implementations§
source§impl<'a> Ord for Key<'a>
impl<'a> Ord for Key<'a>
source§impl<'a> PartialEq<Key<'a>> for Key<'a>
impl<'a> PartialEq<Key<'a>> for Key<'a>
source§impl<'a> PartialOrd<Key<'a>> for Key<'a>
impl<'a> PartialOrd<Key<'a>> for Key<'a>
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