#[repr(C)]pub struct OfxRectI {
pub x1: c_int,
pub y1: c_int,
pub x2: c_int,
pub y2: c_int,
}Expand description
@brief Defines two dimensional integer region
Regions are x1 <= x < x2
Infinite regions are flagged by setting
- x1 = \ref kOfxFlagInfiniteMin
- y1 = \ref kOfxFlagInfiniteMin
- x2 = \ref kOfxFlagInfiniteMax
- y2 = \ref kOfxFlagInfiniteMax
Fields§
§x1: c_int§y1: c_int§x2: c_int§y2: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for OfxRectI
impl RefUnwindSafe for OfxRectI
impl Send for OfxRectI
impl Sync for OfxRectI
impl Unpin for OfxRectI
impl UnwindSafe for OfxRectI
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