Struct screen_13::driver::SubpassDependencyBuilder
source · [−]pub struct SubpassDependencyBuilder { /* private fields */ }Expand description
Builder for SubpassDependency.
Implementations
sourceimpl SubpassDependencyBuilder
impl SubpassDependencyBuilder
pub fn src_subpass(self, value: u32) -> Self
pub fn dst_subpass(self, value: u32) -> Self
pub fn src_stage_mask(self, value: PipelineStageFlags) -> Self
pub fn dst_stage_mask(self, value: PipelineStageFlags) -> Self
pub fn src_access_mask(self, value: AccessFlags) -> Self
pub fn dst_access_mask(self, value: AccessFlags) -> Self
pub fn dependency_flags(self, value: DependencyFlags) -> Self
sourcepub fn build(self) -> Result<SubpassDependency, SubpassDependencyBuilderError>
pub fn build(self) -> Result<SubpassDependency, SubpassDependencyBuilderError>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SubpassDependencyBuilder
impl Send for SubpassDependencyBuilder
impl Sync for SubpassDependencyBuilder
impl Unpin for SubpassDependencyBuilder
impl UnwindSafe for SubpassDependencyBuilder
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