pub struct J2kRect {
pub x0: u32,
pub y0: u32,
pub x1: u32,
pub y1: u32,
}Expand description
Integer rectangle in component coordinates.
Fields§
§x0: u32Inclusive minimum x coordinate.
y0: u32Inclusive minimum y coordinate.
x1: u32Exclusive maximum x coordinate.
y1: u32Exclusive maximum y coordinate.
Implementations§
Trait Implementations§
impl Copy for J2kRect
impl Eq for J2kRect
impl StructuralPartialEq for J2kRect
Auto Trait Implementations§
impl Freeze for J2kRect
impl RefUnwindSafe for J2kRect
impl Send for J2kRect
impl Sync for J2kRect
impl Unpin for J2kRect
impl UnsafeUnpin for J2kRect
impl UnwindSafe for J2kRect
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