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 Clone for BindingMeta
impl Clone for BindingMeta
source§fn clone(&self) -> BindingMeta
fn clone(&self) -> BindingMeta
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more