#[repr(C, packed(1))]pub struct StageInRegionIndirectArguments {
pub stage_in_origin: [u32; 3],
pub stage_in_size: [u32; 3],
}Expand description
Indirect arguments for stage-in region.
C++ equivalent: MTL::StageInRegionIndirectArguments
Fields§
§stage_in_origin: [u32; 3]§stage_in_size: [u32; 3]Trait Implementations§
Source§impl Clone for StageInRegionIndirectArguments
impl Clone for StageInRegionIndirectArguments
Source§fn clone(&self) -> StageInRegionIndirectArguments
fn clone(&self) -> StageInRegionIndirectArguments
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 Default for StageInRegionIndirectArguments
impl Default for StageInRegionIndirectArguments
Source§fn default() -> StageInRegionIndirectArguments
fn default() -> StageInRegionIndirectArguments
Returns the “default value” for a type. Read more
Source§impl PartialEq for StageInRegionIndirectArguments
impl PartialEq for StageInRegionIndirectArguments
Source§fn eq(&self, other: &StageInRegionIndirectArguments) -> bool
fn eq(&self, other: &StageInRegionIndirectArguments) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StageInRegionIndirectArguments
impl Eq for StageInRegionIndirectArguments
impl StructuralPartialEq for StageInRegionIndirectArguments
Auto Trait Implementations§
impl Freeze for StageInRegionIndirectArguments
impl RefUnwindSafe for StageInRegionIndirectArguments
impl Send for StageInRegionIndirectArguments
impl Sync for StageInRegionIndirectArguments
impl Unpin for StageInRegionIndirectArguments
impl UnwindSafe for StageInRegionIndirectArguments
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