[−][src]Struct git2::ConfigEntry
A struct representing a certain entry owned by a Config
instance.
An entry has a name, a value, and a level it applies to.
Methods
impl<'cfg> ConfigEntry<'cfg>
[src]
pub fn name(&self) -> Option<&str>
[src]
Gets the name of this entry.
May return None
if the name is not valid utf-8
pub fn name_bytes(&self) -> &[u8]
[src]
Gets the name of this entry as a byte slice.
pub fn value(&self) -> Option<&str>
[src]
Gets the value of this entry.
May return None
if the value is not valid utf-8
pub fn value_bytes(&self) -> &[u8]
[src]
Gets the value of this entry as a byte slice.
pub fn level(&self) -> ConfigLevel
[src]
Gets the configuration level of this entry.
pub fn include_depth(&self) -> u32
[src]
Depth of includes where this variable was found
Trait Implementations
impl<'cfg> Drop for ConfigEntry<'cfg>
[src]
Auto Trait Implementations
impl<'cfg> !Send for ConfigEntry<'cfg>
impl<'cfg> !Sync for ConfigEntry<'cfg>
impl<'cfg> Unpin for ConfigEntry<'cfg>
impl<'cfg> UnwindSafe for ConfigEntry<'cfg>
impl<'cfg> RefUnwindSafe for ConfigEntry<'cfg>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,