#[non_exhaustive]#[repr(u32)]pub enum IRRuntimeResourceType {
SRV = 0,
UAV = 1,
CBV = 2,
SMP = 3,
Count = 4,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for IRRuntimeResourceType
impl Clone for IRRuntimeResourceType
Source§fn clone(&self) -> IRRuntimeResourceType
fn clone(&self) -> IRRuntimeResourceType
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 moreimpl Copy for IRRuntimeResourceType
Source§impl Debug for IRRuntimeResourceType
impl Debug for IRRuntimeResourceType
impl Eq for IRRuntimeResourceType
Source§impl Hash for IRRuntimeResourceType
impl Hash for IRRuntimeResourceType
Source§impl PartialEq for IRRuntimeResourceType
impl PartialEq for IRRuntimeResourceType
Source§fn eq(&self, other: &IRRuntimeResourceType) -> bool
fn eq(&self, other: &IRRuntimeResourceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IRRuntimeResourceType
Auto Trait Implementations§
impl Freeze for IRRuntimeResourceType
impl RefUnwindSafe for IRRuntimeResourceType
impl Send for IRRuntimeResourceType
impl Sync for IRRuntimeResourceType
impl Unpin for IRRuntimeResourceType
impl UnsafeUnpin for IRRuntimeResourceType
impl UnwindSafe for IRRuntimeResourceType
Blanket Implementations§
impl<T> AutoreleaseSafe for Twhere
T: ?Sized,
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