Struct ash::vk::SubpassDependency
source · [−]#[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
Fields
src_subpass: u32dst_subpass: u32src_stage_mask: PipelineStageFlagsdst_stage_mask: PipelineStageFlagssrc_access_mask: AccessFlagsdst_access_mask: AccessFlagsdependency_flags: DependencyFlagsImplementations
sourceimpl SubpassDependency
impl SubpassDependency
pub fn builder<'a>() -> SubpassDependencyBuilder<'a>
Trait Implementations
sourceimpl Clone for SubpassDependency
impl Clone for SubpassDependency
sourcefn clone(&self) -> SubpassDependency
fn clone(&self) -> SubpassDependency
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 SubpassDependency
impl Debug for SubpassDependency
sourceimpl Default for SubpassDependency
impl Default for SubpassDependency
sourcefn default() -> SubpassDependency
fn default() -> SubpassDependency
Returns the “default value” for a type. Read more
impl Copy for SubpassDependency
Auto Trait Implementations
impl RefUnwindSafe for SubpassDependency
impl Send for SubpassDependency
impl Sync for SubpassDependency
impl Unpin for SubpassDependency
impl UnwindSafe for SubpassDependency
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