pub struct ScissorRect {
pub x: u32,
pub y: u32,
pub width: u32,
pub height: u32,
}Fields§
§x: u32§y: u32§width: u32§height: u32Trait Implementations§
Source§impl Clone for ScissorRect
impl Clone for ScissorRect
Source§fn clone(&self) -> ScissorRect
fn clone(&self) -> ScissorRect
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScissorRect
impl Debug for ScissorRect
Source§impl PartialEq for ScissorRect
impl PartialEq for ScissorRect
Source§fn eq(&self, other: &ScissorRect) -> bool
fn eq(&self, other: &ScissorRect) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScissorRect
impl Eq for ScissorRect
impl StructuralPartialEq for ScissorRect
Auto Trait Implementations§
impl Freeze for ScissorRect
impl RefUnwindSafe for ScissorRect
impl Send for ScissorRect
impl Sync for ScissorRect
impl Unpin for ScissorRect
impl UnsafeUnpin for ScissorRect
impl UnwindSafe for ScissorRect
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.