[][src]Struct git2::ConfigEntry

pub struct ConfigEntry<'cfg> { /* fields omitted */ }

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>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]