Skip to main content

IntoExtractIter

Trait IntoExtractIter 

Source
pub trait IntoExtractIter {
    type Item;
}

Required Associated Types§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<E, const N: usize> IntoExtractIter for [E; N]

Source§

type Item = E

Source§

impl<E> IntoExtractIter for BTreeSet<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for BinaryHeap<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for HashSet<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for LinkedList<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for Option<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for Vec<E>

Source§

type Item = E

Source§

impl<E> IntoExtractIter for VecDeque<E>

Source§

type Item = E

Implementors§