Struct librashader_reflect::reflect::semantics::BindingMeta
source · pub struct BindingMeta {
pub parameter_meta: FastHashMap<ShortString, VariableMeta>,
pub unique_meta: FastHashMap<UniqueSemantics, VariableMeta>,
pub texture_meta: FastHashMap<Semantic<TextureSemantics>, TextureBinding>,
pub texture_size_meta: FastHashMap<Semantic<TextureSemantics>, TextureSizeMeta>,
}Expand description
Reflection metadata about the various bindings for this shader.
Fields§
§parameter_meta: FastHashMap<ShortString, VariableMeta>A map of parameter names to uniform binding metadata.
unique_meta: FastHashMap<UniqueSemantics, VariableMeta>A map of unique semantics to uniform binding metadata.
texture_meta: FastHashMap<Semantic<TextureSemantics>, TextureBinding>A map of texture semantics to texture binding points.
texture_size_meta: FastHashMap<Semantic<TextureSemantics>, TextureSizeMeta>A map of texture semantics to texture size uniform binding metadata.
Trait Implementations§
source§impl Debug for BindingMeta
impl Debug for BindingMeta
source§impl Default for BindingMeta
impl Default for BindingMeta
source§fn default() -> BindingMeta
fn default() -> BindingMeta
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BindingMeta
impl RefUnwindSafe for BindingMeta
impl Send for BindingMeta
impl Sync for BindingMeta
impl Unpin for BindingMeta
impl UnwindSafe for BindingMeta
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