Enum naga::ScalarKind
source · #[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 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 ScalarKind
impl Debug for ScalarKind
source§impl From<StorageFormat> for ScalarKind
impl From<StorageFormat> for ScalarKind
source§fn from(format: StorageFormat) -> Self
fn from(format: StorageFormat) -> Self
Converts to this type from the input type.
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§fn eq(&self, other: &ScalarKind) -> bool
fn eq(&self, other: &ScalarKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ScalarKind
impl PartialOrd for ScalarKind
source§fn partial_cmp(&self, other: &ScalarKind) -> Option<Ordering>
fn partial_cmp(&self, other: &ScalarKind) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl 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<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§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.