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