trait ToArcSlice<T>: Iterator<Item = T> + Sized {
// Required method
fn to_arc_slice(self) -> Arc<[T]>;
}
Expand description
Specialization trait used for collecting into Arc<[T]>
.
Required Methods§
fn to_arc_slice(self) -> Arc<[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.