pub struct Tile<'a> {
pub info: &'a VolumeTileInfo,
pub size: usize,
pub index: i32,
}
Expand description
Represents a single tile in a volume.
Used with crate::geometry::Geometry::foreach_volume_tile
Fields§
§info: &'a VolumeTileInfo
§size: usize
§index: i32
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Tile<'a>
impl<'a> RefUnwindSafe for Tile<'a>
impl<'a> Send for Tile<'a>
impl<'a> Sync for Tile<'a>
impl<'a> Unpin for Tile<'a>
impl<'a> UnwindSafe for Tile<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more