pub trait IntoVolIterator<'a>: BaseVolwhere
Self::Vox: 'a,{
type IntoIter: Iterator<Item = (Vec3<i32>, &'a Self::Vox)>;
// Required method
fn vol_iter(
self,
lower_bound: Vec3<i32>,
upper_bound: Vec3<i32>,
) -> Self::IntoIter;
}Expand description
A volume (usually rather a reference to a volume) that is convertible into an iterator to a cuboid subsection of the volume.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".