Trait list_fn::Iter

source ·
pub trait Iter: ListFn<End = Self> {
    // Provided method
    fn iter(self) -> ListIterator<Self>  { ... }
}
Expand description

Note: we can’t use the standard std::iter::IntoIterator because it has a conflicting implementation.

Provided Methods§

source

fn iter(self) -> ListIterator<Self>

Converts a list to an iterator.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S: ListFn<End = Self>> Iter for S