[][src]Struct git2::oid_array::OidArray

pub struct OidArray { /* fields omitted */ }

An oid array structure used by libgit2

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

Trait Implementations

impl Drop for OidArray
[src]

impl<'repo> Debug for OidArray
[src]

impl Deref for OidArray
[src]

type Target = [Oid]

The resulting type after dereferencing.

Auto Trait Implementations

impl !Send for OidArray

impl !Sync for OidArray

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]