pub struct CaptureRegion {
pub x: i32,
pub y: i32,
pub width: u32,
pub height: u32,
}Expand description
Capture region specification
Fields§
§x: i32§y: i32§width: u32§height: u32Implementations§
Trait Implementations§
Source§impl Clone for CaptureRegion
impl Clone for CaptureRegion
Source§fn clone(&self) -> CaptureRegion
fn clone(&self) -> CaptureRegion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CaptureRegion
impl Debug for CaptureRegion
Source§impl PartialEq for CaptureRegion
impl PartialEq for CaptureRegion
impl Copy for CaptureRegion
impl Eq for CaptureRegion
impl StructuralPartialEq for CaptureRegion
Auto Trait Implementations§
impl Freeze for CaptureRegion
impl RefUnwindSafe for CaptureRegion
impl Send for CaptureRegion
impl Sync for CaptureRegion
impl Unpin for CaptureRegion
impl UnwindSafe for CaptureRegion
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