pub trait IterOwned:
HasData
+ IntoIterator<Item = <Self as HasData>::Item>
+ FromIterator<<Self as HasData>::Item>
+ Extend<<Self as HasData>::Item> { }Expand description
A trait for collections which can be converted to and from iterators over data.
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.