pub struct Zone {
pub id: usize,
pub pixels: Vec<(u64, u64)>,
}Expand description
Zone definition for zonal statistics
Fields§
§id: usizeZone identifier
pixels: Vec<(u64, u64)>List of (x, y) coordinates in this zone
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Zone
impl RefUnwindSafe for Zone
impl Send for Zone
impl Sync for Zone
impl Unpin for Zone
impl UnsafeUnpin for Zone
impl UnwindSafe for Zone
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