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 for Key<'a>
impl<'a> PartialEq for Key<'a>
source§impl<'a> PartialOrd for Key<'a>
impl<'a> PartialOrd 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 moreimpl<'a> Copy for Key<'a>
impl<'a> Eq for Key<'a>
impl<'a> StructuralPartialEq for Key<'a>
Auto Trait Implementations§
impl<'a> Freeze for Key<'a>
impl<'a> RefUnwindSafe for Key<'a>
impl<'a> Send for Key<'a>
impl<'a> Sync for Key<'a>
impl<'a> Unpin for Key<'a>
impl<'a> UnwindSafe for Key<'a>
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