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§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