Struct git2::ConfigEntry[][src]

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]

Gets the name of this entry.

May return None if the name is not valid utf-8

Gets the name of this entry as a byte slice.

Gets the value of this entry.

May return None if the value is not valid utf-8

Gets the value of this entry as a byte slice.

Gets the configuration level of this entry.

Depth of includes where this variable was found

Trait Implementations

impl<'cfg> Drop for ConfigEntry<'cfg>
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl<'cfg> !Send for ConfigEntry<'cfg>

impl<'cfg> !Sync for ConfigEntry<'cfg>