#[repr(C)]pub struct fz_irect {
pub x0: c_int,
pub y0: c_int,
pub x1: c_int,
pub y1: c_int,
}Expand description
fz_irect is a rectangle using integers instead of floats.
It’s used in the draw device and for pixmap dimensions.
Fields§
§x0: c_int§y0: c_int§x1: c_int§y1: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for fz_irect
impl RefUnwindSafe for fz_irect
impl Send for fz_irect
impl Sync for fz_irect
impl Unpin for fz_irect
impl UnwindSafe for fz_irect
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