pub struct InitFlag { /* private fields */ }Expand description
InitFlags are passed to init() to control which subsystem functionality to load.
Implementations§
source§impl InitFlag
impl InitFlag
pub const JPG: InitFlag = _
pub const PNG: InitFlag = _
pub const TIF: InitFlag = _
pub const WEBP: InitFlag = _
sourcepub fn from_bits(bits: u32) -> Option<InitFlag>
pub fn from_bits(bits: u32) -> Option<InitFlag>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u32) -> InitFlag
pub const fn from_bits_truncate(bits: u32) -> InitFlag
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u32) -> InitFlag
pub const unsafe fn from_bits_unchecked(bits: u32) -> InitFlag
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
sourcepub const fn intersects(&self, other: InitFlag) -> bool
pub const fn intersects(&self, other: InitFlag) -> bool
Returns true if there are flags common to both self and other.
Trait Implementations§
source§impl BitAndAssign for InitFlag
impl BitAndAssign for InitFlag
source§fn bitand_assign(&mut self, other: InitFlag)
fn bitand_assign(&mut self, other: InitFlag)
Disables all flags disabled in the set.
source§impl BitOrAssign for InitFlag
impl BitOrAssign for InitFlag
source§fn bitor_assign(&mut self, other: InitFlag)
fn bitor_assign(&mut self, other: InitFlag)
Adds the set of flags.
source§impl BitXorAssign for InitFlag
impl BitXorAssign for InitFlag
source§fn bitxor_assign(&mut self, other: InitFlag)
fn bitxor_assign(&mut self, other: InitFlag)
Toggles the set of flags.
source§impl Extend<InitFlag> for InitFlag
impl Extend<InitFlag> for InitFlag
source§fn extend<T: IntoIterator<Item = InitFlag>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = InitFlag>>(&mut self, iterator: T)
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl FromIterator<InitFlag> for InitFlag
impl FromIterator<InitFlag> for InitFlag
source§impl Ord for InitFlag
impl Ord for InitFlag
source§impl PartialEq for InitFlag
impl PartialEq for InitFlag
source§impl PartialOrd for InitFlag
impl PartialOrd for InitFlag
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 moresource§impl SubAssign for InitFlag
impl SubAssign for InitFlag
source§fn sub_assign(&mut self, other: InitFlag)
fn sub_assign(&mut self, other: InitFlag)
Disables all flags enabled in the set.
impl Copy for InitFlag
impl Eq for InitFlag
impl StructuralEq for InitFlag
impl StructuralPartialEq for InitFlag
Auto Trait Implementations§
impl RefUnwindSafe for InitFlag
impl Send for InitFlag
impl Sync for InitFlag
impl Unpin for InitFlag
impl UnwindSafe for InitFlag
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more