Struct naga::back::hlsl::ReflectionInfo
source · pub struct ReflectionInfo {
pub entry_point_names: Vec<Result<String, EntryPointError>>,
}
Expand description
Reflection info for entry point names.
Fields§
§entry_point_names: Vec<Result<String, EntryPointError>>
Mapping of the entry point names.
Each item in the array corresponds to an entry point index. The real entry point name may be different if one of the reserved words are used.
Note: Some entry points may fail translation because of missing bindings.
Trait Implementations§
source§impl Default for ReflectionInfo
impl Default for ReflectionInfo
source§fn default() -> ReflectionInfo
fn default() -> ReflectionInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReflectionInfo
impl RefUnwindSafe for ReflectionInfo
impl Send for ReflectionInfo
impl Sync for ReflectionInfo
impl Unpin for ReflectionInfo
impl UnwindSafe for ReflectionInfo
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