#[repr(C)]pub struct SubpassDependency {
pub src_subpass: u32,
pub dst_subpass: u32,
pub src_stage_mask: PipelineStageFlags,
pub dst_stage_mask: PipelineStageFlags,
pub src_access_mask: AccessFlags,
pub dst_access_mask: AccessFlags,
pub dependency_flags: DependencyFlags,
}Expand description
VkSubpassDependency
Provided by VK_GRAPHICS_VERSION_1_0.
Fields§
§src_subpass: u32§dst_subpass: u32§src_stage_mask: PipelineStageFlags§dst_stage_mask: PipelineStageFlags§src_access_mask: AccessFlags§dst_access_mask: AccessFlags§dependency_flags: DependencyFlagsImplementations§
Source§impl SubpassDependency
impl SubpassDependency
Sourcepub fn builder() -> SubpassDependencyBuilder
pub fn builder() -> SubpassDependencyBuilder
Start building this struct.
Trait Implementations§
Source§impl Clone for SubpassDependency
impl Clone for SubpassDependency
Source§fn clone(&self) -> SubpassDependency
fn clone(&self) -> SubpassDependency
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 SubpassDependency
impl Debug for SubpassDependency
Source§impl Default for SubpassDependency
impl Default for SubpassDependency
impl Copy for SubpassDependency
Auto Trait Implementations§
impl Freeze for SubpassDependency
impl RefUnwindSafe for SubpassDependency
impl Send for SubpassDependency
impl Sync for SubpassDependency
impl Unpin for SubpassDependency
impl UnsafeUnpin for SubpassDependency
impl UnwindSafe for SubpassDependency
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