pub trait IntoTIter: IntoIterator{
// Required method
fn into_titer(self) -> Self::IntoIter
where Self: Sized;
}Expand description
A trait indicating that a type can be converted into a Trusted and DoubleEnded iterator.
Required Methods§
fn into_titer(self) -> Self::IntoIterwhere
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".