Struct screen_13::prelude::vk::ExternalFenceFeatureFlags
source · pub struct ExternalFenceFeatureFlags(_);Expand description
Implementations§
source§impl ExternalFenceFeatureFlags
impl ExternalFenceFeatureFlags
pub const fn empty() -> ExternalFenceFeatureFlags
pub const fn from_raw(x: u32) -> ExternalFenceFeatureFlags
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: ExternalFenceFeatureFlags) -> bool
sourcepub const fn contains(self, other: ExternalFenceFeatureFlags) -> bool
pub const fn contains(self, other: ExternalFenceFeatureFlags) -> bool
Returns whether other is a subset of self
source§impl ExternalFenceFeatureFlags
impl ExternalFenceFeatureFlags
pub const EXPORTABLE: ExternalFenceFeatureFlags = Self(1)
pub const IMPORTABLE: ExternalFenceFeatureFlags = Self(2)
source§impl ExternalFenceFeatureFlags
impl ExternalFenceFeatureFlags
Generated from ‘VK_KHR_external_fence_capabilities’
pub const EXPORTABLE_KHR: ExternalFenceFeatureFlags = Self::EXPORTABLE
pub const IMPORTABLE_KHR: ExternalFenceFeatureFlags = Self::IMPORTABLE
Trait Implementations§
source§impl BitAnd<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitAnd<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
§type Output = ExternalFenceFeatureFlags
type Output = ExternalFenceFeatureFlags
The resulting type after applying the
& operator.source§fn bitand(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
fn bitand(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
Performs the
& operation. Read moresource§impl BitAndAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitAndAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
source§fn bitand_assign(&mut self, rhs: ExternalFenceFeatureFlags)
fn bitand_assign(&mut self, rhs: ExternalFenceFeatureFlags)
Performs the
&= operation. Read moresource§impl BitOr<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitOr<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
§type Output = ExternalFenceFeatureFlags
type Output = ExternalFenceFeatureFlags
The resulting type after applying the
| operator.source§fn bitor(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
fn bitor(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
Performs the
| operation. Read moresource§impl BitOrAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitOrAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
source§fn bitor_assign(&mut self, rhs: ExternalFenceFeatureFlags)
fn bitor_assign(&mut self, rhs: ExternalFenceFeatureFlags)
Performs the
|= operation. Read moresource§impl BitXor<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitXor<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
§type Output = ExternalFenceFeatureFlags
type Output = ExternalFenceFeatureFlags
The resulting type after applying the
^ operator.source§fn bitxor(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
fn bitxor(self, rhs: ExternalFenceFeatureFlags) -> ExternalFenceFeatureFlags
Performs the
^ operation. Read moresource§impl BitXorAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl BitXorAssign<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
source§fn bitxor_assign(&mut self, rhs: ExternalFenceFeatureFlags)
fn bitxor_assign(&mut self, rhs: ExternalFenceFeatureFlags)
Performs the
^= operation. Read moresource§impl Clone for ExternalFenceFeatureFlags
impl Clone for ExternalFenceFeatureFlags
source§fn clone(&self) -> ExternalFenceFeatureFlags
fn clone(&self) -> ExternalFenceFeatureFlags
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 ExternalFenceFeatureFlags
impl Debug for ExternalFenceFeatureFlags
source§impl Default for ExternalFenceFeatureFlags
impl Default for ExternalFenceFeatureFlags
source§fn default() -> ExternalFenceFeatureFlags
fn default() -> ExternalFenceFeatureFlags
Returns the “default value” for a type. Read more
source§impl Hash for ExternalFenceFeatureFlags
impl Hash for ExternalFenceFeatureFlags
source§impl Not for ExternalFenceFeatureFlags
impl Not for ExternalFenceFeatureFlags
§type Output = ExternalFenceFeatureFlags
type Output = ExternalFenceFeatureFlags
The resulting type after applying the
! operator.source§fn not(self) -> ExternalFenceFeatureFlags
fn not(self) -> ExternalFenceFeatureFlags
Performs the unary
! operation. Read moresource§impl Ord for ExternalFenceFeatureFlags
impl Ord for ExternalFenceFeatureFlags
source§fn cmp(&self, other: &ExternalFenceFeatureFlags) -> Ordering
fn cmp(&self, other: &ExternalFenceFeatureFlags) -> 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<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl PartialEq<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
source§fn eq(&self, other: &ExternalFenceFeatureFlags) -> bool
fn eq(&self, other: &ExternalFenceFeatureFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
impl PartialOrd<ExternalFenceFeatureFlags> for ExternalFenceFeatureFlags
source§fn partial_cmp(&self, other: &ExternalFenceFeatureFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ExternalFenceFeatureFlags) -> 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 more