trait ToRcSlice<T>: Iterator<Item = T> + Sized { // Required method fn to_rc_slice(self) -> Rc<[T]>; }
Specialization trait used for collecting into Rc<[T]>.
Rc<[T]>