pub trait FromIteratorSpec<A>: Sized + FromIterator<A> {
// Required method
spec fn from_iter_ensures(remaining: Seq<A>, s: Self) -> bool;
}Required Methods§
Sourcespec fn from_iter_ensures(remaining: Seq<A>, s: Self) -> bool
spec fn from_iter_ensures(remaining: Seq<A>, s: Self) -> bool
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.