#[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 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.
Specifically, the returned set contains only the flags which are
present in both self and other.
This is equivalent to using the & operator (e.g.
ops::BitAnd), as in flags & other.
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.
Specifically, the returned set contains all flags which are
present in either self or other, including any which are
present in both (see Self::symmetric_difference if that
is undesirable).
This is equivalent to using the | operator (e.g.
ops::BitOr), as in flags | other.
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.
Specifically, the returned set contains all flags present in
self, except for the ones present in other.
It is also conceptually equivalent to the “bit-clear” operation:
flags & !other (and this syntax is also supported).
This is equivalent to using the - operator (e.g.
ops::Sub), as in flags - other.
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.
Specifically, the returned set contains the flags present which
are present in self or other, but that are not present in
both. Equivalently, it contains the flags present in exactly
one of the sets self and other.
This is equivalent to using the ^ operator (e.g.
ops::BitXor), as in flags ^ other.
pub const fn complement(self) -> Backends
pub const fn complement(self) -> Backends
Returns the complement of this set of flags.
Specifically, the returned set contains all the flags which are
not set in self, but which are allowed for this type.
Alternatively, it can be thought of as the set difference
between Self::all() and self (e.g. Self::all() - self)
This is equivalent to using the ! operator (e.g.
ops::Not), as in !flags.
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
sourcefn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
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.