pub struct Dialect {
    pub version_major: u8,
    pub version_minor: u8,
    pub capabilities: BTreeSet<u32>,
    pub extensions: BTreeSet<String>,
    pub addressing_model: u32,
    pub memory_model: u32,
}Expand description
Semantic properties of a SPIR-V module (not tied to any IDs).
Fields§
§version_major: u8§version_minor: u8§capabilities: BTreeSet<u32>§extensions: BTreeSet<String>§addressing_model: u32§memory_model: u32Implementations§
source§impl Dialect
 
impl Dialect
pub fn extension_insts(&self) -> impl Iterator<Item = InstWithIds> + '_
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Dialect
impl Send for Dialect
impl Sync for Dialect
impl Unpin for Dialect
impl UnwindSafe for Dialect
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