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.

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]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [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

Panics

Panics when no value is defined.

pub fn value_bytes(&self) -> &[u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Gets the value of this entry as a byte slice.

Panics

Panics when no value is defined.

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]

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]

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.