Enum spirv::HostAccessQualifier
source · #[repr(u32)]pub enum HostAccessQualifier {
NoneINTEL = 0,
ReadINTEL = 1,
WriteINTEL = 2,
ReadWriteINTEL = 3,
}
Expand description
SPIR-V operand kind: HostAccessQualifier
Variants§
Implementations§
Trait Implementations§
source§impl Clone for HostAccessQualifier
impl Clone for HostAccessQualifier
source§fn clone(&self) -> HostAccessQualifier
fn clone(&self) -> HostAccessQualifier
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 HostAccessQualifier
impl Debug for HostAccessQualifier
source§impl FromStr for HostAccessQualifier
impl FromStr for HostAccessQualifier
source§impl Hash for HostAccessQualifier
impl Hash for HostAccessQualifier
source§impl Ord for HostAccessQualifier
impl Ord for HostAccessQualifier
source§fn cmp(&self, other: &HostAccessQualifier) -> Ordering
fn cmp(&self, other: &HostAccessQualifier) -> 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 HostAccessQualifier
impl PartialEq for HostAccessQualifier
source§fn eq(&self, other: &HostAccessQualifier) -> bool
fn eq(&self, other: &HostAccessQualifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for HostAccessQualifier
impl PartialOrd for HostAccessQualifier
source§fn partial_cmp(&self, other: &HostAccessQualifier) -> Option<Ordering>
fn partial_cmp(&self, other: &HostAccessQualifier) -> 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 HostAccessQualifier
impl Eq for HostAccessQualifier
impl StructuralPartialEq for HostAccessQualifier
Auto Trait Implementations§
impl Freeze for HostAccessQualifier
impl RefUnwindSafe for HostAccessQualifier
impl Send for HostAccessQualifier
impl Sync for HostAccessQualifier
impl Unpin for HostAccessQualifier
impl UnwindSafe for HostAccessQualifier
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