pub struct SpecCacheKey {
pub shader_hash: u64,
pub binding_sig: u64,
pub workgroup_size: [u32; 3],
pub spec_hash: u64,
}Expand description
Cache key extending a backend pipeline identity with specialization values.
Fields§
§shader_hash: u64Hash of the shader or target module.
binding_sig: u64Stable signature of the binding layout.
workgroup_size: [u32; 3]Workgroup size in the dispatch.
spec_hash: u64Hash of specialization values.
Implementations§
Trait Implementations§
Source§impl Clone for SpecCacheKey
impl Clone for SpecCacheKey
Source§fn clone(&self) -> SpecCacheKey
fn clone(&self) -> SpecCacheKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SpecCacheKey
impl Debug for SpecCacheKey
impl Eq for SpecCacheKey
Source§impl Hash for SpecCacheKey
impl Hash for SpecCacheKey
Source§impl PartialEq for SpecCacheKey
impl PartialEq for SpecCacheKey
Source§fn eq(&self, other: &SpecCacheKey) -> bool
fn eq(&self, other: &SpecCacheKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpecCacheKey
Auto Trait Implementations§
impl Freeze for SpecCacheKey
impl RefUnwindSafe for SpecCacheKey
impl Send for SpecCacheKey
impl Sync for SpecCacheKey
impl Unpin for SpecCacheKey
impl UnsafeUnpin for SpecCacheKey
impl UnwindSafe for SpecCacheKey
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.