Struct git2::string_array::StringArray[][src]

pub struct StringArray { /* fields omitted */ }

A string array structure used by libgit2

Some apis return arrays of strings which originate from libgit2. This wrapper type behaves a little like Vec<&str> but does so without copying the underlying strings until necessary.

Methods

impl StringArray
[src]

Returns None if the i'th string is not utf8 or if i is out of bounds.

Returns None if i is out of bounds.

Important traits for Iter<'a>

Returns an iterator over the strings contained within this array.

The iterator yields Option<&str> as it is unknown whether the contents are utf-8 or not.

Important traits for IterBytes<'a>

Returns an iterator over the strings contained within this array, yielding byte slices.

Returns the number of strings in this array.

Return true if this array is empty.

Trait Implementations

impl<'a> IntoIterator for &'a StringArray
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl Drop for StringArray
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl !Send for StringArray

impl !Sync for StringArray