pub struct Key<'a> {
pub section_name: &'a str,
pub subsection_name: Option<&'a str>,
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 str>
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
sourceimpl<'a> Ord for Key<'a>
impl<'a> Ord for Key<'a>
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<'a> PartialOrd<Key<'a>> for Key<'a>
impl<'a> PartialOrd<Key<'a>> for Key<'a>
sourcefn partial_cmp(&self, other: &Key<'a>) -> Option<Ordering>
fn partial_cmp(&self, other: &Key<'a>) -> Option<Ordering>
1.0.0 · sourcefn 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> StructuralEq for Key<'a>
impl<'a> StructuralPartialEq for Key<'a>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more