Struct ash::vk::SubpassDependency2
source · [−]#[repr(C)]pub struct SubpassDependency2 {
pub s_type: StructureType,
pub p_next: *const c_void,
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,
pub view_offset: i32,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidsrc_subpass: u32dst_subpass: u32src_stage_mask: PipelineStageFlagsdst_stage_mask: PipelineStageFlagssrc_access_mask: AccessFlagsdst_access_mask: AccessFlagsdependency_flags: DependencyFlagsview_offset: i32Implementations
sourceimpl SubpassDependency2
impl SubpassDependency2
pub fn builder<'a>() -> SubpassDependency2Builder<'a>
Trait Implementations
sourceimpl Clone for SubpassDependency2
impl Clone for SubpassDependency2
sourcefn clone(&self) -> SubpassDependency2
fn clone(&self) -> SubpassDependency2
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SubpassDependency2
impl Debug for SubpassDependency2
sourceimpl Default for SubpassDependency2
impl Default for SubpassDependency2
impl Copy for SubpassDependency2
Auto Trait Implementations
impl RefUnwindSafe for SubpassDependency2
impl !Send for SubpassDependency2
impl !Sync for SubpassDependency2
impl Unpin for SubpassDependency2
impl UnwindSafe for SubpassDependency2
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more