Struct ash::vk::CooperativeMatrixPropertiesNVBuilder
source · pub struct CooperativeMatrixPropertiesNVBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> CooperativeMatrixPropertiesNVBuilder<'a>
pub fn m_size(self, m_size: u32) -> Self
pub fn n_size(self, n_size: u32) -> Self
pub fn k_size(self, k_size: u32) -> Self
pub fn a_type(self, a_type: ComponentTypeNV) -> Self
pub fn b_type(self, b_type: ComponentTypeNV) -> Self
pub fn c_type(self, c_type: ComponentTypeNV) -> Self
pub fn d_type(self, d_type: ComponentTypeNV) -> Self
pub fn scope(self, scope: ScopeNV) -> Self
sourcepub fn build(self) -> CooperativeMatrixPropertiesNV
pub fn build(self) -> CooperativeMatrixPropertiesNV
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> Deref for CooperativeMatrixPropertiesNVBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> RefUnwindSafe for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> !Send for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> !Sync for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> Unpin for CooperativeMatrixPropertiesNVBuilder<'a>
impl<'a> UnwindSafe for CooperativeMatrixPropertiesNVBuilder<'a>
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