pub trait IntoFullPosIterator: BaseVol {
type IntoIter: Iterator<Item = Vec3<i32>>;
// Required method
fn full_pos_iter(self) -> Self::IntoIter;
}Required Associated Types§
Required Methods§
fn full_pos_iter(self) -> Self::IntoIter
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".