#[repr(u32)]pub enum StencilFaceMask {
Front = 1,
Back = 2,
Both = 3,
}
Expand description
Bitmask specifying sets of stencil state for which to update the compare mask
Variants§
Front = 1
Only the front set of stencil state
Back = 2
Only the back set of stencil state
Both = 3
Both sets of stencil state
Trait Implementations§
Source§impl Clone for StencilFaceMask
impl Clone for StencilFaceMask
Source§fn clone(&self) -> StencilFaceMask
fn clone(&self) -> StencilFaceMask
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 StencilFaceMask
impl Debug for StencilFaceMask
Source§impl PartialEq for StencilFaceMask
impl PartialEq for StencilFaceMask
impl Copy for StencilFaceMask
impl Eq for StencilFaceMask
impl StructuralPartialEq for StencilFaceMask
Auto Trait Implementations§
impl Freeze for StencilFaceMask
impl RefUnwindSafe for StencilFaceMask
impl Send for StencilFaceMask
impl Sync for StencilFaceMask
impl Unpin for StencilFaceMask
impl UnwindSafe for StencilFaceMask
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