Struct git2::ConfigEntry [−][src]
pub struct ConfigEntry<'cfg> { /* fields omitted */ }Expand description
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]
impl<'cfg> ConfigEntry<'cfg>[src]pub fn name(&self) -> Option<&str>[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]
pub fn name_bytes(&self) -> &[u8]ⓘ[src]Gets the name of this entry as a byte slice.
pub fn value(&self) -> Option<&str>[src]
pub fn value(&self) -> Option<&str>[src]Gets the value of this entry.
May return None if the value is not valid utf-8
Panics
Panics when no value is defined.
pub fn value_bytes(&self) -> &[u8]ⓘ[src]
pub fn value_bytes(&self) -> &[u8]ⓘ[src]pub fn has_value(&self) -> bool[src]
pub fn has_value(&self) -> bool[src]Returns true when a value is defined otherwise false.
No value defined is a short-hand to represent a Boolean true.
pub fn level(&self) -> ConfigLevel[src]
pub fn level(&self) -> ConfigLevel[src]Gets the configuration level of this entry.
pub fn include_depth(&self) -> u32[src]
pub fn include_depth(&self) -> u32[src]Depth of includes where this variable was found