pub struct FenceCreateFlags { /* private fields */ }Implementations§
Source§impl FenceCreateFlags
impl FenceCreateFlags
pub const FLAG_BITS_MAX_ENUM: FenceCreateFlags
pub const SIGNALED: FenceCreateFlags
Sourcepub fn empty() -> FenceCreateFlags
pub fn empty() -> FenceCreateFlags
Returns an empty set of flags.
Sourcepub fn all() -> FenceCreateFlags
pub fn all() -> FenceCreateFlags
Returns the set containing all flags.
Sourcepub fn from_bits(bits: u32) -> Option<FenceCreateFlags>
pub fn from_bits(bits: u32) -> Option<FenceCreateFlags>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
Sourcepub fn from_bits_truncate(bits: u32) -> FenceCreateFlags
pub fn from_bits_truncate(bits: u32) -> FenceCreateFlags
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Sourcepub fn intersects(&self, other: FenceCreateFlags) -> bool
pub fn intersects(&self, other: FenceCreateFlags) -> bool
Returns true if there are flags common to both self and other.
Sourcepub fn contains(&self, other: FenceCreateFlags) -> bool
pub fn contains(&self, other: FenceCreateFlags) -> bool
Returns true all of the flags in other are contained within self.
Sourcepub fn insert(&mut self, other: FenceCreateFlags)
pub fn insert(&mut self, other: FenceCreateFlags)
Inserts the specified flags in-place.
Sourcepub fn remove(&mut self, other: FenceCreateFlags)
pub fn remove(&mut self, other: FenceCreateFlags)
Removes the specified flags in-place.
Sourcepub fn toggle(&mut self, other: FenceCreateFlags)
pub fn toggle(&mut self, other: FenceCreateFlags)
Toggles the specified flags in-place.
Sourcepub fn set(&mut self, other: FenceCreateFlags, value: bool)
pub fn set(&mut self, other: FenceCreateFlags, value: bool)
Inserts or removes the specified flags depending on the passed value.
Trait Implementations§
Source§impl Binary for FenceCreateFlags
impl Binary for FenceCreateFlags
Source§impl BitAnd for FenceCreateFlags
impl BitAnd for FenceCreateFlags
Source§fn bitand(self, other: FenceCreateFlags) -> FenceCreateFlags
fn bitand(self, other: FenceCreateFlags) -> FenceCreateFlags
Returns the intersection between the two sets of flags.
Source§type Output = FenceCreateFlags
type Output = FenceCreateFlags
& operator.Source§impl BitAndAssign for FenceCreateFlags
impl BitAndAssign for FenceCreateFlags
Source§fn bitand_assign(&mut self, other: FenceCreateFlags)
fn bitand_assign(&mut self, other: FenceCreateFlags)
Disables all flags disabled in the set.
Source§impl BitOr for FenceCreateFlags
impl BitOr for FenceCreateFlags
Source§fn bitor(self, other: FenceCreateFlags) -> FenceCreateFlags
fn bitor(self, other: FenceCreateFlags) -> FenceCreateFlags
Returns the union of the two sets of flags.
Source§type Output = FenceCreateFlags
type Output = FenceCreateFlags
| operator.Source§impl BitOrAssign for FenceCreateFlags
impl BitOrAssign for FenceCreateFlags
Source§fn bitor_assign(&mut self, other: FenceCreateFlags)
fn bitor_assign(&mut self, other: FenceCreateFlags)
Adds the set of flags.
Source§impl BitXor for FenceCreateFlags
impl BitXor for FenceCreateFlags
Source§fn bitxor(self, other: FenceCreateFlags) -> FenceCreateFlags
fn bitxor(self, other: FenceCreateFlags) -> FenceCreateFlags
Returns the left flags, but with all the right flags toggled.
Source§type Output = FenceCreateFlags
type Output = FenceCreateFlags
^ operator.Source§impl BitXorAssign for FenceCreateFlags
impl BitXorAssign for FenceCreateFlags
Source§fn bitxor_assign(&mut self, other: FenceCreateFlags)
fn bitxor_assign(&mut self, other: FenceCreateFlags)
Toggles the set of flags.
Source§impl Clone for FenceCreateFlags
impl Clone for FenceCreateFlags
Source§fn clone(&self) -> FenceCreateFlags
fn clone(&self) -> FenceCreateFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FenceCreateFlags
impl Debug for FenceCreateFlags
Source§impl Default for FenceCreateFlags
impl Default for FenceCreateFlags
Source§fn default() -> FenceCreateFlags
fn default() -> FenceCreateFlags
Source§impl Extend<FenceCreateFlags> for FenceCreateFlags
impl Extend<FenceCreateFlags> for FenceCreateFlags
Source§fn extend<T: IntoIterator<Item = FenceCreateFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = FenceCreateFlags>>(&mut self, iterator: T)
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)Source§impl FromIterator<FenceCreateFlags> for FenceCreateFlags
impl FromIterator<FenceCreateFlags> for FenceCreateFlags
Source§fn from_iter<T: IntoIterator<Item = FenceCreateFlags>>(
iterator: T,
) -> FenceCreateFlags
fn from_iter<T: IntoIterator<Item = FenceCreateFlags>>( iterator: T, ) -> FenceCreateFlags
Source§impl Hash for FenceCreateFlags
impl Hash for FenceCreateFlags
Source§impl LowerHex for FenceCreateFlags
impl LowerHex for FenceCreateFlags
Source§impl Not for FenceCreateFlags
impl Not for FenceCreateFlags
Source§fn not(self) -> FenceCreateFlags
fn not(self) -> FenceCreateFlags
Returns the complement of this set of flags.
Source§type Output = FenceCreateFlags
type Output = FenceCreateFlags
! operator.Source§impl Octal for FenceCreateFlags
impl Octal for FenceCreateFlags
Source§impl Ord for FenceCreateFlags
impl Ord for FenceCreateFlags
Source§fn cmp(&self, other: &FenceCreateFlags) -> Ordering
fn cmp(&self, other: &FenceCreateFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for FenceCreateFlags
impl PartialEq for FenceCreateFlags
Source§impl PartialOrd for FenceCreateFlags
impl PartialOrd for FenceCreateFlags
Source§impl Sub for FenceCreateFlags
impl Sub for FenceCreateFlags
Source§fn sub(self, other: FenceCreateFlags) -> FenceCreateFlags
fn sub(self, other: FenceCreateFlags) -> FenceCreateFlags
Returns the set difference of the two sets of flags.
Source§type Output = FenceCreateFlags
type Output = FenceCreateFlags
- operator.Source§impl SubAssign for FenceCreateFlags
impl SubAssign for FenceCreateFlags
Source§fn sub_assign(&mut self, other: FenceCreateFlags)
fn sub_assign(&mut self, other: FenceCreateFlags)
Disables all flags enabled in the set.