Struct naga::back::msl::TranslationInfo
source · pub struct TranslationInfo {
pub entry_point_names: Vec<Result<String, EntryPointError>>,
}
Expand description
Information about a translated module that is required for the use of the result.
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.
Note: Some entry points may fail translation because of missing bindings.
Auto Trait Implementations§
impl Freeze for TranslationInfo
impl RefUnwindSafe for TranslationInfo
impl Send for TranslationInfo
impl Sync for TranslationInfo
impl Unpin for TranslationInfo
impl UnwindSafe for TranslationInfo
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