#[repr(u8)]pub enum ScalarKind {
    Sint = 0,
    Uint = 1,
    Float = 2,
    Bool = 3,
    AbstractInt = 4,
    AbstractFloat = 5,
}Expand description
Primitive type for a scalar.
Variants§
Sint = 0
Signed integer type.
Uint = 1
Unsigned integer type.
Float = 2
Floating point type.
Bool = 3
Boolean type.
AbstractInt = 4
WGSL abstract integer type.
These are forbidden by validation, and should never reach backends.
AbstractFloat = 5
Abstract floating-point type.
These are forbidden by validation, and should never reach backends.
Implementations§
Source§impl ScalarKind
 
impl ScalarKind
pub const fn is_numeric(self) -> bool
Trait Implementations§
Source§impl Clone for ScalarKind
 
impl Clone for ScalarKind
Source§fn clone(&self) -> ScalarKind
 
fn clone(&self) -> ScalarKind
Returns a duplicate 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 ScalarKind
 
impl Debug for ScalarKind
Source§impl Hash for ScalarKind
 
impl Hash for ScalarKind
Source§impl Ord for ScalarKind
 
impl Ord for ScalarKind
Source§fn cmp(&self, other: &ScalarKind) -> Ordering
 
fn cmp(&self, other: &ScalarKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ScalarKind
 
impl PartialEq for ScalarKind
Source§impl PartialOrd for ScalarKind
 
impl PartialOrd for ScalarKind
impl Copy for ScalarKind
impl Eq for ScalarKind
impl StructuralPartialEq for ScalarKind
Auto Trait Implementations§
impl Freeze for ScalarKind
impl RefUnwindSafe for ScalarKind
impl Send for ScalarKind
impl Sync for ScalarKind
impl Unpin for ScalarKind
impl UnwindSafe for ScalarKind
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> Comparable<K> for Q
 
impl<Q, K> Comparable<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.