Trait CustomIterTools
pub trait CustomIterTools: Iterator {
// Provided methods
unsafe fn trust_my_length(
self,
length: usize,
) -> TrustMyLength<Self, Self::Item> ⓘ
where Self: Sized { ... }
fn collect_trusted<T>(self) -> T
where T: FromTrustedLenIterator<Self::Item>,
Self: Sized + TrustedLen { ... }
fn collect_reversed<T>(self) -> T
where T: FromIteratorReversed<Self::Item>,
Self: Sized + TrustedLen { ... }
}Provided Methods§
unsafe fn trust_my_length(
self,
length: usize,
) -> TrustMyLength<Self, Self::Item> ⓘwhere
Self: Sized,
unsafe fn trust_my_length(
self,
length: usize,
) -> TrustMyLength<Self, Self::Item> ⓘwhere
Self: Sized,
fn collect_trusted<T>(self) -> T
fn collect_reversed<T>(self) -> T
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".