Trait opencv::core::prelude::FileNodeIteratorTraitConst[][src]

pub trait FileNodeIteratorTraitConst {
    fn as_raw_FileNodeIterator(&self) -> *const c_void;

    fn try_deref(&self) -> Result<FileNode> { ... }
fn remaining(&self) -> Result<size_t> { ... }
fn equal_to(&self, it: &FileNodeIterator) -> Result<bool> { ... } }
Expand description

used to iterate through sequences and mappings.

A standard STL notation, with node.begin(), node.end() denoting the beginning and the end of a sequence, stored in node. See the data reading sample in the beginning of the section.

Required methods

Provided methods

returns the currently observed element

returns the number of remaining (not read yet) elements

Implementors