pub trait TupleFromIterTry<T> {
type OutTuple;
// Required method
fn from_iter_try<I>(iter: I) -> Self::OutTuple
where I: IntoIterator<Item = T>;
}Required Associated Types§
Required Methods§
Sourcefn from_iter_try<I>(iter: I) -> Self::OutTuplewhere
I: IntoIterator<Item = T>,
fn from_iter_try<I>(iter: I) -> Self::OutTuplewhere
I: IntoIterator<Item = T>,
Such as Iter<T> -> (Option<T>, Option<T>, Option<T>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.