Struct git2::ConfigEntry [−][src]
A struct representing a certain entry owned by a Config instance.
An entry has a name, a value, and a level it applies to.
Implementations
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> RefUnwindSafe for ConfigEntry<'cfg>
impl<'cfg> !Send for ConfigEntry<'cfg>
impl<'cfg> !Sync for ConfigEntry<'cfg>
impl<'cfg> Unpin for ConfigEntry<'cfg>
impl<'cfg> UnwindSafe for ConfigEntry<'cfg>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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.
pub 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>,