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: u32
Implementations§
Source§impl Dialect
impl Dialect
pub fn extension_insts(&self) -> impl Iterator<Item = InstWithIds> + '_
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dialect
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more