pub trait Size:
Seal
+ Send
+ Sync
+ Clone
+ Copy {
// Required method
fn exact_len(self) -> Option<usize>;
}Expand description
Marker trait determining whether the iterator is exact-sized or not.
Required Methods§
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.