#[repr(C)]pub struct StencilOpState {
pub failOp: StencilOp,
pub passOp: StencilOp,
pub depthFailOp: StencilOp,
pub compareOp: CompareOp,
pub compareMask: u32,
pub writeMask: u32,
pub reference: u32,
}Fields§
§failOp: StencilOp§passOp: StencilOp§depthFailOp: StencilOp§compareOp: CompareOp§compareMask: u32§writeMask: u32§reference: u32Trait Implementations§
Source§impl Clone for StencilOpState
impl Clone for StencilOpState
Source§fn clone(&self) -> StencilOpState
fn clone(&self) -> StencilOpState
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 moreimpl Copy for StencilOpState
Auto Trait Implementations§
impl Freeze for StencilOpState
impl RefUnwindSafe for StencilOpState
impl Send for StencilOpState
impl Sync for StencilOpState
impl Unpin for StencilOpState
impl UnwindSafe for StencilOpState
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