#[repr(transparent)]pub struct Backends(pub(crate) <Backends as PublicFlags>::Internal);Expand description
Represents the backends that wgpu will use.
Tuple Fields
0: <Backends as PublicFlags>::InternalImplementations
impl Backends
impl Backends
pub const VULKAN: Backends = Self::from_bits_retain(1 << Backend::Vulkan as u32)
pub const VULKAN: Backends = Self::from_bits_retain(1 << Backend::Vulkan as u32)
Supported on Windows, Linux/Android, and macOS/iOS via Vulkan Portability (with the Vulkan feature enabled)
pub const GL: Backends = Self::from_bits_retain(1 << Backend::Gl as u32)
pub const GL: Backends = Self::from_bits_retain(1 << Backend::Gl as u32)
Supported on Linux/Android, the web through webassembly via WebGL, and Windows and macOS/iOS via ANGLE
pub const METAL: Backends = Self::from_bits_retain(1 << Backend::Metal as u32)
pub const METAL: Backends = Self::from_bits_retain(1 << Backend::Metal as u32)
Supported on macOS/iOS
pub const BROWSER_WEBGPU: Backends = Self::from_bits_retain(1 << Backend::BrowserWebGpu as u32)
pub const BROWSER_WEBGPU: Backends = Self::from_bits_retain(1 << Backend::BrowserWebGpu as u32)
Supported when targeting the web through webassembly
impl Backends
impl Backends
pub const fn from_bits(bits: u32) -> Option<Backends>
pub const fn from_bits(bits: u32) -> Option<Backends>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> Backends
pub const fn from_bits_truncate(bits: u32) -> Backends
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const fn from_bits_retain(bits: u32) -> Backends
pub const fn from_bits_retain(bits: u32) -> Backends
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub fn from_name(name: &str) -> Option<Backends>
pub fn from_name(name: &str) -> Option<Backends>
Get the value for a flag from its stringified name.
Names are case-sensitive, so must correspond exactly to the identifier given to the flag.
pub const fn intersects(&self, other: Backends) -> bool
pub const fn intersects(&self, other: Backends) -> bool
Returns true if there are flags common to both self and other.
pub const fn contains(&self, other: Backends) -> bool
pub const fn contains(&self, other: Backends) -> bool
Returns true if all of the flags in other are contained within self.
pub fn insert(&mut self, other: Backends)
pub fn insert(&mut self, other: Backends)
Inserts the specified flags in-place.
This method is equivalent to union.
pub fn remove(&mut self, other: Backends)
pub fn remove(&mut self, other: Backends)
Removes the specified flags in-place.
This method is equivalent to difference.
pub fn toggle(&mut self, other: Backends)
pub fn toggle(&mut self, other: Backends)
Toggles the specified flags in-place.
This method is equivalent to symmetric_difference.
pub fn set(&mut self, other: Backends, value: bool)
pub fn set(&mut self, other: Backends, value: bool)
Inserts or removes the specified flags depending on the passed value.
pub const fn intersection(self, other: Backends) -> Backends
pub const fn intersection(self, other: Backends) -> Backends
Returns the intersection between the flags in self and
other.
Calculating self bitwise and (&) other, including
any bits that don’t correspond to a defined flag.
pub const fn union(self, other: Backends) -> Backends
pub const fn union(self, other: Backends) -> Backends
Returns the union of between the flags in self and other.
Calculates self bitwise or (|) other, including
any bits that don’t correspond to a defined flag.
pub const fn difference(self, other: Backends) -> Backends
pub const fn difference(self, other: Backends) -> Backends
Returns the difference between the flags in self and other.
Calculates self bitwise and (&!) the bitwise negation of other,
including any bits that don’t correspond to a defined flag.
This method is not equivalent to a & !b when there are bits set that
don’t correspond to a defined flag. The ! operator will unset any
bits that don’t correspond to a flag, so they’ll always be unset by a &! b,
but respected by a.difference(b).
pub const fn symmetric_difference(self, other: Backends) -> Backends
pub const fn symmetric_difference(self, other: Backends) -> Backends
Returns the symmetric difference between the flags
in self and other.
Calculates self bitwise exclusive or (^) other,
including any bits that don’t correspond to a defined flag.
pub const fn complement(self) -> Backends
pub const fn complement(self) -> Backends
Returns the complement of this set of flags.
Calculates the bitwise negation (!) of self,
unsetting any bits that don’t correspond to a defined flag.
impl Backends
impl Backends
impl Backends
impl Backends
pub fn contains_invalid_bits(&self) -> bool
pub fn contains_invalid_bits(&self) -> bool
Returns true if the bitflags contains bits that are not part of the bitflags definition.
Trait Implementations
impl BitAndAssign<Backends> for Backends
impl BitAndAssign<Backends> for Backends
fn bitand_assign(&mut self, other: Backends)
fn bitand_assign(&mut self, other: Backends)
Disables all flags disabled in the set.
impl BitOrAssign<Backends> for Backends
impl BitOrAssign<Backends> for Backends
fn bitor_assign(&mut self, other: Backends)
fn bitor_assign(&mut self, other: Backends)
Adds the set of flags.
impl BitXorAssign<Backends> for Backends
impl BitXorAssign<Backends> for Backends
fn bitxor_assign(&mut self, other: Backends)
fn bitxor_assign(&mut self, other: Backends)
Toggles the set of flags.
impl Extend<Backends> for Backends
impl Extend<Backends> for Backends
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Backends>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = Backends>,
sourcefn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one)sourcefn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one)impl Flags for Backends
impl Flags for Backends
const FLAGS: &'static [Flag<Backends>] = &[{ ::bitflags::Flag::new("VULKAN", Backends::VULKAN) },
{ ::bitflags::Flag::new("GL", Backends::GL) },
{ ::bitflags::Flag::new("METAL", Backends::METAL) },
{ ::bitflags::Flag::new("DX12", Backends::DX12) },
{ ::bitflags::Flag::new("DX11", Backends::DX11) },
{
::bitflags::Flag::new("BROWSER_WEBGPU",
Backends::BROWSER_WEBGPU)
}, { ::bitflags::Flag::new("PRIMARY", Backends::PRIMARY) },
{ ::bitflags::Flag::new("SECONDARY", Backends::SECONDARY) }]
const FLAGS: &'static [Flag<Backends>] = &[{ ::bitflags::Flag::new("VULKAN", Backends::VULKAN) }, { ::bitflags::Flag::new("GL", Backends::GL) }, { ::bitflags::Flag::new("METAL", Backends::METAL) }, { ::bitflags::Flag::new("DX12", Backends::DX12) }, { ::bitflags::Flag::new("DX11", Backends::DX11) }, { ::bitflags::Flag::new("BROWSER_WEBGPU", Backends::BROWSER_WEBGPU) }, { ::bitflags::Flag::new("PRIMARY", Backends::PRIMARY) }, { ::bitflags::Flag::new("SECONDARY", Backends::SECONDARY) }]
fn from_bits_retain(bits: u32) -> Backends
fn from_bits_retain(bits: u32) -> Backends
sourcefn from_bits(bits: Self::Bits) -> Option<Self>
fn from_bits(bits: Self::Bits) -> Option<Self>
sourcefn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
sourcefn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
sourcefn intersects(&self, other: Self) -> bool
fn intersects(&self, other: Self) -> bool
true if there are flags common to both self and other.sourcefn contains(&self, other: Self) -> bool
fn contains(&self, other: Self) -> bool
true if all of the flags in other are contained within self.sourcefn set(&mut self, other: Self, value: bool)
fn set(&mut self, other: Self, value: bool)
sourcefn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
self and other.sourcefn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
self and other.sourcefn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
sourcefn complement(self) -> Self
fn complement(self) -> Self
impl FromIterator<Backends> for Backends
impl FromIterator<Backends> for Backends
fn from_iter<T>(iterator: T) -> Backendswhere
T: IntoIterator<Item = Backends>,
fn from_iter<T>(iterator: T) -> Backendswhere
T: IntoIterator<Item = Backends>,
impl IntoIterator for Backends
impl IntoIterator for Backends
impl SubAssign<Backends> for Backends
impl SubAssign<Backends> for Backends
fn sub_assign(&mut self, other: Backends)
fn sub_assign(&mut self, other: Backends)
Disables all flags enabled in the set.
impl Copy for Backends
impl Eq for Backends
impl StructuralEq for Backends
impl StructuralPartialEq for Backends
Auto Trait Implementations
impl RefUnwindSafe for Backends
impl Send for Backends
impl Sync for Backends
impl Unpin for Backends
impl UnwindSafe for Backends
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read morefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read morefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read morefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read moresourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.