Struct screen_13::driver::SubpassDependency
source · [−]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,
}Fields
src_subpass: u32dst_subpass: u32src_stage_mask: PipelineStageFlagsdst_stage_mask: PipelineStageFlagssrc_access_mask: AccessFlagsdst_access_mask: AccessFlagsdependency_flags: DependencyFlagsImplementations
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 Hash for SubpassDependency
impl Hash for SubpassDependency
sourceimpl PartialEq<SubpassDependency> for SubpassDependency
impl PartialEq<SubpassDependency> for SubpassDependency
sourcefn eq(&self, other: &SubpassDependency) -> bool
fn eq(&self, other: &SubpassDependency) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &SubpassDependency) -> bool
fn ne(&self, other: &SubpassDependency) -> bool
This method tests for !=.
impl Copy for SubpassDependency
impl Eq for SubpassDependency
impl StructuralEq for SubpassDependency
impl StructuralPartialEq 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