#[repr(C, packed(1))]pub struct ScissorRect {
pub x: UInteger,
pub y: UInteger,
pub width: UInteger,
pub height: UInteger,
}Expand description
Scissor rectangle for rendering.
C++ equivalent: MTL::ScissorRect (from MTLRenderCommandEncoder.hpp)
Fields§
§x: UInteger§y: UInteger§width: UInteger§height: UIntegerImplementations§
Trait 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 · 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 Default for ScissorRect
impl Default for ScissorRect
Source§fn default() -> ScissorRect
fn default() -> ScissorRect
Returns the “default value” for a type. Read more
Source§impl Hash for ScissorRect
impl Hash for ScissorRect
Source§impl PartialEq for ScissorRect
impl PartialEq for ScissorRect
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 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