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