Source code
Revision control
Copy as Markdown
Other Tools
//! The SPIR-V header.
//!
//! This crate contains Rust definitions of all SPIR-V structs, enums,
//! and constants.
//!
//! The version of this crate is the version of SPIR-V it contains.
#![no_std]
#![allow(non_camel_case_types)]
#![deny(clippy::std_instead_of_core, clippy::alloc_instead_of_core)]
#![cfg_attr(rustfmt, rustfmt_skip)]
use bitflags::bitflags;
include!("autogen_spirv.rs");
impl From<Op> for Word {
// Exists because of repr()
fn from(value: Op) -> Self {
value as Word
}
}