Struct ash::vk::ClearDepthStencilValueBuilder
source · pub struct ClearDepthStencilValueBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ClearDepthStencilValueBuilder<'a>
impl<'a> ClearDepthStencilValueBuilder<'a>
pub fn depth(self, depth: f32) -> Self
pub fn stencil(self, stencil: u32) -> Self
sourcepub fn build(self) -> ClearDepthStencilValue
pub fn build(self) -> ClearDepthStencilValue
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for ClearDepthStencilValueBuilder<'a>
impl<'a> Deref for ClearDepthStencilValueBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for ClearDepthStencilValueBuilder<'a>
impl<'a> RefUnwindSafe for ClearDepthStencilValueBuilder<'a>
impl<'a> Send for ClearDepthStencilValueBuilder<'a>
impl<'a> Sync for ClearDepthStencilValueBuilder<'a>
impl<'a> Unpin for ClearDepthStencilValueBuilder<'a>
impl<'a> UnwindSafe for ClearDepthStencilValueBuilder<'a>
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