#[repr(transparent)]pub struct GeometryFlagsKHR(_);Expand description
Implementations
sourceimpl GeometryFlagsKHR
impl GeometryFlagsKHR
pub const fn empty() -> GeometryFlagsKHR
pub const fn from_raw(x: u32) -> GeometryFlagsKHR
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: GeometryFlagsKHR) -> bool
sourcepub const fn contains(self, other: GeometryFlagsKHR) -> bool
pub const fn contains(self, other: GeometryFlagsKHR) -> bool
Returns whether other is a subset of self
sourceimpl GeometryFlagsKHR
impl GeometryFlagsKHR
pub const OPAQUE: GeometryFlagsKHR = Self(1)
pub const NO_DUPLICATE_ANY_HIT_INVOCATION: GeometryFlagsKHR = Self(2)
sourceimpl GeometryFlagsKHR
impl GeometryFlagsKHR
Generated from ‘VK_NV_ray_tracing’
pub const OPAQUE_NV: GeometryFlagsKHR = Self::OPAQUE
pub const NO_DUPLICATE_ANY_HIT_INVOCATION_NV: GeometryFlagsKHR = Self::NO_DUPLICATE_ANY_HIT_INVOCATION
Trait Implementations
sourceimpl BitAnd<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitAnd<GeometryFlagsKHR> for GeometryFlagsKHR
type Output = GeometryFlagsKHR
type Output = GeometryFlagsKHR
The resulting type after applying the & operator.
sourcefn bitand(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
fn bitand(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
Performs the & operation. Read more
sourceimpl BitAndAssign<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitAndAssign<GeometryFlagsKHR> for GeometryFlagsKHR
sourcefn bitand_assign(&mut self, rhs: GeometryFlagsKHR)
fn bitand_assign(&mut self, rhs: GeometryFlagsKHR)
Performs the &= operation. Read more
sourceimpl BitOr<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitOr<GeometryFlagsKHR> for GeometryFlagsKHR
type Output = GeometryFlagsKHR
type Output = GeometryFlagsKHR
The resulting type after applying the | operator.
sourcefn bitor(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
fn bitor(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
Performs the | operation. Read more
sourceimpl BitOrAssign<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitOrAssign<GeometryFlagsKHR> for GeometryFlagsKHR
sourcefn bitor_assign(&mut self, rhs: GeometryFlagsKHR)
fn bitor_assign(&mut self, rhs: GeometryFlagsKHR)
Performs the |= operation. Read more
sourceimpl BitXor<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitXor<GeometryFlagsKHR> for GeometryFlagsKHR
type Output = GeometryFlagsKHR
type Output = GeometryFlagsKHR
The resulting type after applying the ^ operator.
sourcefn bitxor(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
fn bitxor(self, rhs: GeometryFlagsKHR) -> GeometryFlagsKHR
Performs the ^ operation. Read more
sourceimpl BitXorAssign<GeometryFlagsKHR> for GeometryFlagsKHR
impl BitXorAssign<GeometryFlagsKHR> for GeometryFlagsKHR
sourcefn bitxor_assign(&mut self, rhs: GeometryFlagsKHR)
fn bitxor_assign(&mut self, rhs: GeometryFlagsKHR)
Performs the ^= operation. Read more
sourceimpl Clone for GeometryFlagsKHR
impl Clone for GeometryFlagsKHR
sourcefn clone(&self) -> GeometryFlagsKHR
fn clone(&self) -> GeometryFlagsKHR
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GeometryFlagsKHR
impl Debug for GeometryFlagsKHR
sourceimpl Default for GeometryFlagsKHR
impl Default for GeometryFlagsKHR
sourcefn default() -> GeometryFlagsKHR
fn default() -> GeometryFlagsKHR
Returns the “default value” for a type. Read more
sourceimpl Hash for GeometryFlagsKHR
impl Hash for GeometryFlagsKHR
sourceimpl Not for GeometryFlagsKHR
impl Not for GeometryFlagsKHR
type Output = GeometryFlagsKHR
type Output = GeometryFlagsKHR
The resulting type after applying the ! operator.
sourcefn not(self) -> GeometryFlagsKHR
fn not(self) -> GeometryFlagsKHR
Performs the unary ! operation. Read more
sourceimpl Ord for GeometryFlagsKHR
impl Ord for GeometryFlagsKHR
sourceimpl PartialEq<GeometryFlagsKHR> for GeometryFlagsKHR
impl PartialEq<GeometryFlagsKHR> for GeometryFlagsKHR
sourcefn eq(&self, other: &GeometryFlagsKHR) -> bool
fn eq(&self, other: &GeometryFlagsKHR) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GeometryFlagsKHR) -> bool
fn ne(&self, other: &GeometryFlagsKHR) -> bool
This method tests for !=.
sourceimpl PartialOrd<GeometryFlagsKHR> for GeometryFlagsKHR
impl PartialOrd<GeometryFlagsKHR> for GeometryFlagsKHR
sourcefn partial_cmp(&self, other: &GeometryFlagsKHR) -> Option<Ordering>
fn partial_cmp(&self, other: &GeometryFlagsKHR) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for GeometryFlagsKHR
impl Eq for GeometryFlagsKHR
impl StructuralEq for GeometryFlagsKHR
impl StructuralPartialEq for GeometryFlagsKHR
Auto Trait Implementations
impl RefUnwindSafe for GeometryFlagsKHR
impl Send for GeometryFlagsKHR
impl Sync for GeometryFlagsKHR
impl Unpin for GeometryFlagsKHR
impl UnwindSafe for GeometryFlagsKHR
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more