#[repr(u32)]pub enum DepthFunction {
Never = 512,
Less = 513,
Equal = 514,
Lequal = 515,
Greater = 516,
Notequal = 517,
Gequal = 518,
Always = 519,
}Variants§
Never = 512
Less = 513
Equal = 514
Lequal = 515
Greater = 516
Notequal = 517
Gequal = 518
Always = 519
Trait Implementations§
Source§impl Clone for DepthFunction
impl Clone for DepthFunction
Source§fn clone(&self) -> DepthFunction
fn clone(&self) -> DepthFunction
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 DepthFunction
Auto Trait Implementations§
impl Freeze for DepthFunction
impl RefUnwindSafe for DepthFunction
impl Send for DepthFunction
impl Sync for DepthFunction
impl Unpin for DepthFunction
impl UnwindSafe for DepthFunction
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