Struct git2::ConfigEntries

source ·
pub struct ConfigEntries<'cfg> { /* private fields */ }
Expand description

An iterator over the ConfigEntry values of a Config structure.

Due to lifetime restrictions, ConfigEntries does not implement the standard Iterator trait. It provides a next function which only allows access to one entry at a time. for_each is available as a convenience function.

Example

// Example of how to collect all entries.
use git2::Config;

let config = Config::new()?;
let iter = config.entries(None)?;
let mut entries = Vec::new();
iter
    .for_each(|entry| {
        let name = entry.name().unwrap().to_string();
        let value = entry.value().unwrap_or("").to_string();
        entries.push((name, value))
    })?;
for entry in &entries {
    println!("{} = {}", entry.0, entry.1);
}

Implementations§

source§

impl<'cfg> ConfigEntries<'cfg>

source

pub fn next(&mut self) -> Option<Result<&ConfigEntry<'cfg>, Error>>

Advances the iterator and returns the next value.

Returns None when iteration is finished.

source

pub fn for_each<F: FnMut(&ConfigEntry<'cfg>)>(self, f: F) -> Result<(), Error>

Calls the given closure for each remaining entry in the iterator.

Trait Implementations§

source§

impl<'cfg> Drop for ConfigEntries<'cfg>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'cfg> RefUnwindSafe for ConfigEntries<'cfg>

§

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

§

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

§

impl<'cfg> Unpin for ConfigEntries<'cfg>

§

impl<'cfg> UnwindSafe for ConfigEntries<'cfg>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.