1
2
3
4
5
6
pub use spirv_struct_layout_derive::*;

pub trait CheckSpirvStruct {
    /// Check this struct against the named instance in the given spirv
    fn check_spirv_layout(name: &str, spirv: Vec<u32>);
}