CanBeIterator

Trait CanBeIterator 

Source
pub trait CanBeIterator: Iterator<Item = Value> + Debug {
    // Provided methods
    fn call_next(&mut self) -> Result<Value, Box<dyn Error>> { ... }
    fn call_collect(&mut self) -> Result<Value, Box<dyn Error>> { ... }
}

Provided Methods§

Source

fn call_next(&mut self) -> Result<Value, Box<dyn Error>>

Source

fn call_collect(&mut self) -> Result<Value, Box<dyn Error>>

Implementations on Foreign Types§

Source§

impl CanBeIterator for IntoIter<Value>

Implementors§