#[repr(C)]pub struct Image_Region {
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
}Available on crate feature
api-12 only.Expand description
Defines the region of the image source to decode.
Available since API-level: 12
Fields§
§x: u32X coordinate of the start point, in pixels.
y: u32Y coordinate of the start point, in pixels.
width: u32Width of the region, in pixels.
height: u32Height of the region, in pixels.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Image_Region
impl RefUnwindSafe for Image_Region
impl Send for Image_Region
impl Sync for Image_Region
impl Unpin for Image_Region
impl UnsafeUnpin for Image_Region
impl UnwindSafe for Image_Region
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