Struct git2::string_array::StringArray [−][src]
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.
Implementations
impl StringArray[src]
pub fn get(&self, i: usize) -> Option<&str>[src]
Returns None if the i’th string is not utf8 or if i is out of bounds.
pub fn get_bytes(&self, i: usize) -> Option<&[u8]>[src]
Returns None if i is out of bounds.
pub fn iter(&self) -> Iter<'_>ⓘ[src]
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.
pub fn iter_bytes(&self) -> IterBytes<'_>ⓘ[src]
Returns an iterator over the strings contained within this array, yielding byte slices.
pub fn len(&self) -> usize[src]
Returns the number of strings in this array.
pub fn is_empty(&self) -> bool[src]
Return true if this array is empty.
Trait Implementations
impl Drop for StringArray[src]
impl<'a> IntoIterator for &'a StringArray[src]
Auto Trait Implementations
impl RefUnwindSafe for StringArray
impl !Send for StringArray
impl !Sync for StringArray
impl Unpin for StringArray
impl UnwindSafe for StringArray
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,