Struct git2::string_array::StringArray
[−]
[src]
pub struct StringArray { // some 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
fn get(&self, i: usize) -> Option<&str>
Returns None if the i'th string is not utf8 or if i is out of bounds.
fn get_bytes(&self, i: usize) -> Option<&[u8]>
Returns None if i
is out of bounds.
fn iter(&self) -> Iter
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.
fn iter_bytes(&self) -> IterBytes
Returns an iterator over the strings contained within this array, yielding byte slices.
fn len(&self) -> usize
Returns the number of strings in this array.