Struct gfx_hal::pso::Face [−][src]
pub struct Face { /* fields omitted */ }
Face.
Implementations
impl Face
[src]
impl Face
[src]pub const NONE: Face
[src]
Empty face. TODO: remove when constexpr are stabilized to use empty()
pub const FRONT: Face
[src]
Front face.
pub const BACK: Face
[src]
Back face.
pub const fn empty() -> Face
[src]
Returns an empty set of flags
pub const fn all() -> Face
[src]
Returns the set containing all flags.
pub const fn bits(&self) -> u32
[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<Face>
[src]
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) -> Face
[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> Face
[src]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: Face) -> bool
[src]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: Face) -> bool
[src]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: Face)
[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: Face)
[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: Face)
[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: Face, value: bool)
[src]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl BitAndAssign<Face> for Face
[src]
impl BitAndAssign<Face> for Face
[src]fn bitand_assign(&mut self, other: Face)
[src]
Disables all flags disabled in the set.
impl BitOrAssign<Face> for Face
[src]
impl BitOrAssign<Face> for Face
[src]fn bitor_assign(&mut self, other: Face)
[src]
Adds the set of flags.
impl BitXorAssign<Face> for Face
[src]
impl BitXorAssign<Face> for Face
[src]fn bitxor_assign(&mut self, other: Face)
[src]
Toggles the set of flags.
impl Extend<Face> for Face
[src]
impl Extend<Face> for Face
[src]fn extend<T: IntoIterator<Item = Face>>(&mut self, iterator: T)
[src]
pub fn extend_one(&mut self, item: A)
[src]
pub fn extend_reserve(&mut self, additional: usize)
[src]
impl FromIterator<Face> for Face
[src]
impl FromIterator<Face> for Face
[src]fn from_iter<T: IntoIterator<Item = Face>>(iterator: T) -> Face
[src]
impl PartialOrd<Face> for Face
[src]
impl PartialOrd<Face> for Face
[src]impl StructuralEq for Face
[src]
impl StructuralEq for Face
[src]impl StructuralPartialEq for Face
[src]
impl StructuralPartialEq for Face
[src]Auto Trait Implementations
impl RefUnwindSafe for Face
impl RefUnwindSafe for Face
impl UnwindSafe for Face
impl UnwindSafe for Face