[][src]Struct opencv::core::VectorRefIterator

pub struct VectorRefIterator<'v, T: VectorElement> where
    Vector<T>: VectorExtern<T>, 
{ /* fields omitted */ }

Implementations

impl<'v, T: VectorElement> VectorRefIterator<'v, T> where
    Vector<T>: VectorExtern<T>, 
[src]

pub fn new(vec: &'v Vector<T>) -> Self[src]

Trait Implementations

impl<T: VectorElement, '_> ExactSizeIterator for VectorRefIterator<'_, T> where
    Vector<T>: VectorExtern<T>, 
[src]

impl<T: VectorElement, '_> FusedIterator for VectorRefIterator<'_, T> where
    Vector<T>: VectorExtern<T>, 
[src]

impl<T: VectorElement, '_> Iterator for VectorRefIterator<'_, T> where
    Vector<T>: VectorExtern<T>, 
[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

impl<'v, T> RefUnwindSafe for VectorRefIterator<'v, T> where
    T: RefUnwindSafe
[src]

impl<'v, T> !Send for VectorRefIterator<'v, T>[src]

impl<'v, T> !Sync for VectorRefIterator<'v, T>[src]

impl<'v, T> Unpin for VectorRefIterator<'v, T>[src]

impl<'v, T> UnwindSafe for VectorRefIterator<'v, T> where
    T: RefUnwindSafe
[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.