[][src]Struct opencv::core::MatConstIterator

pub struct MatConstIterator { /* fields omitted */ }

/////////////////////////////// MatConstIterator //////////////////////////////////

Implementations

impl MatConstIterator[src]

impl MatConstIterator[src]

pub fn default() -> Result<MatConstIterator>[src]

default constructor

pub fn over(_m: &Mat) -> Result<MatConstIterator>[src]

constructor that sets the iterator to the beginning of the matrix

pub fn with_rows_cols(
    _m: &Mat,
    _row: i32,
    _col: i32
) -> Result<MatConstIterator>
[src]

constructor that sets the iterator to the specified element of the matrix

C++ default parameters

  • _col: 0

pub fn with_start(_m: &Mat, _pt: Point) -> Result<MatConstIterator>[src]

constructor that sets the iterator to the specified element of the matrix

pub fn copy(it: &MatConstIterator) -> Result<MatConstIterator>[src]

copy constructor

Trait Implementations

impl Boxed for MatConstIterator[src]

impl Drop for MatConstIterator[src]

impl MatConstIteratorTrait for MatConstIterator[src]

impl Send for MatConstIterator[src]

Auto Trait Implementations

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<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.