Struct git2::ConfigEntry

source ·
pub struct ConfigEntry<'cfg> { /* private fields */ }
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§

source§

impl<'cfg> ConfigEntry<'cfg>

source

pub fn name(&self) -> Option<&str>

Gets the name of this entry.

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

source

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

Gets the name of this entry as a byte slice.

source

pub fn value(&self) -> Option<&str>

Gets the value of this entry.

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

§Panics

Panics when no value is defined.

source

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

Gets the value of this entry as a byte slice.

§Panics

Panics when no value is defined.

source

pub fn has_value(&self) -> bool

Returns true when a value is defined otherwise false.

No value defined is a short-hand to represent a Boolean true.

source

pub fn level(&self) -> ConfigLevel

Gets the configuration level of this entry.

source

pub fn include_depth(&self) -> u32

Depth of includes where this variable was found

Trait Implementations§

source§

impl<'cfg> Drop for ConfigEntry<'cfg>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'cfg> Freeze for ConfigEntry<'cfg>

§

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§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.