#[repr(C)]pub struct ClearDepthStencil {
pub depth: f32,
pub stencil: u32,
}
Expand description
A combination of depth and stencil clear values.
Fields§
§depth: f32
Depth value
stencil: u32
Stencil value
Trait Implementations§
Source§impl Clone for ClearDepthStencil
impl Clone for ClearDepthStencil
Source§fn clone(&self) -> ClearDepthStencil
fn clone(&self) -> ClearDepthStencil
Returns a copy 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 ClearDepthStencil
impl Debug for ClearDepthStencil
impl Copy for ClearDepthStencil
Auto Trait Implementations§
impl Freeze for ClearDepthStencil
impl RefUnwindSafe for ClearDepthStencil
impl Send for ClearDepthStencil
impl Sync for ClearDepthStencil
impl Unpin for ClearDepthStencil
impl UnwindSafe for ClearDepthStencil
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