Struct ash::vk::definitions::SubpassDescriptionDepthStencilResolve
source · #[repr(C)]pub struct SubpassDescriptionDepthStencilResolve<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub depth_resolve_mode: ResolveModeFlags,
pub stencil_resolve_mode: ResolveModeFlags,
pub p_depth_stencil_resolve_attachment: *const AttachmentReference2<'a>,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§depth_resolve_mode: ResolveModeFlags
§stencil_resolve_mode: ResolveModeFlags
§p_depth_stencil_resolve_attachment: *const AttachmentReference2<'a>
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> SubpassDescriptionDepthStencilResolve<'a>
impl<'a> SubpassDescriptionDepthStencilResolve<'a>
pub fn depth_resolve_mode(self, depth_resolve_mode: ResolveModeFlags) -> Self
pub fn stencil_resolve_mode( self, stencil_resolve_mode: ResolveModeFlags, ) -> Self
pub fn depth_stencil_resolve_attachment( self, depth_stencil_resolve_attachment: &'a AttachmentReference2<'a>, ) -> Self
Trait Implementations§
source§impl<'a> Clone for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> Clone for SubpassDescriptionDepthStencilResolve<'a>
source§fn clone(&self) -> SubpassDescriptionDepthStencilResolve<'a>
fn clone(&self) -> SubpassDescriptionDepthStencilResolve<'a>
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<'a> Debug for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> Debug for SubpassDescriptionDepthStencilResolve<'a>
source§impl Default for SubpassDescriptionDepthStencilResolve<'_>
impl Default for SubpassDescriptionDepthStencilResolve<'_>
source§impl<'a> TaggedStructure for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> TaggedStructure for SubpassDescriptionDepthStencilResolve<'a>
const STRUCTURE_TYPE: StructureType = StructureType::SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE
impl<'a> Copy for SubpassDescriptionDepthStencilResolve<'a>
impl ExtendsSubpassDescription2 for SubpassDescriptionDepthStencilResolve<'_>
impl Send for SubpassDescriptionDepthStencilResolve<'_>
impl Sync for SubpassDescriptionDepthStencilResolve<'_>
Auto Trait Implementations§
impl<'a> Freeze for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> RefUnwindSafe for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> Unpin for SubpassDescriptionDepthStencilResolve<'a>
impl<'a> UnwindSafe for SubpassDescriptionDepthStencilResolve<'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