#[repr(C)]pub struct CooperativeMatrixPropertiesNV<'a> {
    pub s_type: StructureType,
    pub p_next: *mut c_void,
    pub m_size: u32,
    pub n_size: u32,
    pub k_size: u32,
    pub a_type: ComponentTypeNV,
    pub b_type: ComponentTypeNV,
    pub c_type: ComponentTypeNV,
    pub d_type: ComponentTypeNV,
    pub scope: ScopeNV,
    pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *mut c_void§m_size: u32§n_size: u32§k_size: u32§a_type: ComponentTypeNV§b_type: ComponentTypeNV§c_type: ComponentTypeNV§d_type: ComponentTypeNV§scope: ScopeNV§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> CooperativeMatrixPropertiesNV<'a>
 
impl<'a> CooperativeMatrixPropertiesNV<'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
Trait Implementations§
Source§impl<'a> Clone for CooperativeMatrixPropertiesNV<'a>
 
impl<'a> Clone for CooperativeMatrixPropertiesNV<'a>
Source§fn clone(&self) -> CooperativeMatrixPropertiesNV<'a>
 
fn clone(&self) -> CooperativeMatrixPropertiesNV<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<'a> Debug for CooperativeMatrixPropertiesNV<'a>
 
impl<'a> Debug for CooperativeMatrixPropertiesNV<'a>
Source§impl Default for CooperativeMatrixPropertiesNV<'_>
 
impl Default for CooperativeMatrixPropertiesNV<'_>
Source§impl<'a> TaggedStructure for CooperativeMatrixPropertiesNV<'a>
 
impl<'a> TaggedStructure for CooperativeMatrixPropertiesNV<'a>
const STRUCTURE_TYPE: StructureType = StructureType::COOPERATIVE_MATRIX_PROPERTIES_NV
impl<'a> Copy for CooperativeMatrixPropertiesNV<'a>
impl Send for CooperativeMatrixPropertiesNV<'_>
impl Sync for CooperativeMatrixPropertiesNV<'_>
Auto Trait Implementations§
impl<'a> Freeze for CooperativeMatrixPropertiesNV<'a>
impl<'a> RefUnwindSafe for CooperativeMatrixPropertiesNV<'a>
impl<'a> Unpin for CooperativeMatrixPropertiesNV<'a>
impl<'a> UnwindSafe for CooperativeMatrixPropertiesNV<'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