logo
pub trait TryFromIterator<T>: Sized {
    type Error;

    fn try_from_iter<I>(items: I) -> Result<Self, Self::Error>
    where
        I: Iterator<Item = T>
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors