Struct let_engine::objects::physics::LockedAxes
source · pub struct LockedAxes { /* private fields */ }Expand description
Flags affecting the behavior of the constraints solver for a given contact manifold.
Implementations§
source§impl LockedAxes
impl LockedAxes
sourcepub const TRANSLATION_LOCKED_X: LockedAxes = _
pub const TRANSLATION_LOCKED_X: LockedAxes = _
Flag indicating that the rigid-body cannot translate along the X axis.
sourcepub const TRANSLATION_LOCKED_Y: LockedAxes = _
pub const TRANSLATION_LOCKED_Y: LockedAxes = _
Flag indicating that the rigid-body cannot translate along the Y axis.
sourcepub const TRANSLATION_LOCKED_Z: LockedAxes = _
pub const TRANSLATION_LOCKED_Z: LockedAxes = _
Flag indicating that the rigid-body cannot translate along the Z axis.
sourcepub const TRANSLATION_LOCKED: LockedAxes = _
pub const TRANSLATION_LOCKED: LockedAxes = _
Flag indicating that the rigid-body cannot translate along any direction.
sourcepub const ROTATION_LOCKED_X: LockedAxes = _
pub const ROTATION_LOCKED_X: LockedAxes = _
Flag indicating that the rigid-body cannot rotate along the X axis.
sourcepub const ROTATION_LOCKED_Y: LockedAxes = _
pub const ROTATION_LOCKED_Y: LockedAxes = _
Flag indicating that the rigid-body cannot rotate along the Y axis.
sourcepub const ROTATION_LOCKED_Z: LockedAxes = _
pub const ROTATION_LOCKED_Z: LockedAxes = _
Flag indicating that the rigid-body cannot rotate along the Z axis.
sourcepub const ROTATION_LOCKED: LockedAxes = _
pub const ROTATION_LOCKED: LockedAxes = _
Combination of flags indicating that the rigid-body cannot rotate along any axis.
sourcepub const fn empty() -> LockedAxes
pub const fn empty() -> LockedAxes
Returns an empty set of flags.
sourcepub const fn all() -> LockedAxes
pub const fn all() -> LockedAxes
Returns the set containing all flags.
sourcepub const fn from_bits(bits: u8) -> Option<LockedAxes>
pub const fn from_bits(bits: u8) -> Option<LockedAxes>
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
sourcepub const fn from_bits_truncate(bits: u8) -> LockedAxes
pub const fn from_bits_truncate(bits: u8) -> LockedAxes
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
sourcepub const unsafe fn from_bits_unchecked(bits: u8) -> LockedAxes
pub const unsafe fn from_bits_unchecked(bits: u8) -> LockedAxes
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
§Safety
The caller of the bitflags! macro can chose to allow or
disallow extra bits for their bitflags type.
The caller of from_bits_unchecked() has to ensure that
all bits correspond to a defined flag or that extra bits
are valid for this bitflags type.
sourcepub const fn intersects(&self, other: LockedAxes) -> bool
pub const fn intersects(&self, other: LockedAxes) -> bool
Returns true if there are flags common to both self and other.
sourcepub const fn contains(&self, other: LockedAxes) -> bool
pub const fn contains(&self, other: LockedAxes) -> bool
Returns true if all of the flags in other are contained within self.
sourcepub fn insert(&mut self, other: LockedAxes)
pub fn insert(&mut self, other: LockedAxes)
Inserts the specified flags in-place.
sourcepub fn remove(&mut self, other: LockedAxes)
pub fn remove(&mut self, other: LockedAxes)
Removes the specified flags in-place.
sourcepub fn toggle(&mut self, other: LockedAxes)
pub fn toggle(&mut self, other: LockedAxes)
Toggles the specified flags in-place.
sourcepub fn set(&mut self, other: LockedAxes, value: bool)
pub fn set(&mut self, other: LockedAxes, value: bool)
Inserts or removes the specified flags depending on the passed value.
sourcepub const fn intersection(self, other: LockedAxes) -> LockedAxes
pub const fn intersection(self, other: LockedAxes) -> LockedAxes
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.
sourcepub const fn union(self, other: LockedAxes) -> LockedAxes
pub const fn union(self, other: LockedAxes) -> LockedAxes
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.
sourcepub const fn difference(self, other: LockedAxes) -> LockedAxes
pub const fn difference(self, other: LockedAxes) -> LockedAxes
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.
sourcepub const fn symmetric_difference(self, other: LockedAxes) -> LockedAxes
pub const fn symmetric_difference(self, other: LockedAxes) -> LockedAxes
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.
sourcepub const fn complement(self) -> LockedAxes
pub const fn complement(self) -> LockedAxes
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.
Trait Implementations§
source§impl Binary for LockedAxes
impl Binary for LockedAxes
source§impl BitAnd for LockedAxes
impl BitAnd for LockedAxes
source§fn bitand(self, other: LockedAxes) -> LockedAxes
fn bitand(self, other: LockedAxes) -> LockedAxes
Returns the intersection between the two sets of flags.
§type Output = LockedAxes
type Output = LockedAxes
& operator.source§impl BitAndAssign for LockedAxes
impl BitAndAssign for LockedAxes
source§fn bitand_assign(&mut self, other: LockedAxes)
fn bitand_assign(&mut self, other: LockedAxes)
Disables all flags disabled in the set.
source§impl BitOr for LockedAxes
impl BitOr for LockedAxes
source§fn bitor(self, other: LockedAxes) -> LockedAxes
fn bitor(self, other: LockedAxes) -> LockedAxes
Returns the union of the two sets of flags.
§type Output = LockedAxes
type Output = LockedAxes
| operator.source§impl BitOrAssign for LockedAxes
impl BitOrAssign for LockedAxes
source§fn bitor_assign(&mut self, other: LockedAxes)
fn bitor_assign(&mut self, other: LockedAxes)
Adds the set of flags.
source§impl BitXor for LockedAxes
impl BitXor for LockedAxes
source§fn bitxor(self, other: LockedAxes) -> LockedAxes
fn bitxor(self, other: LockedAxes) -> LockedAxes
Returns the left flags, but with all the right flags toggled.
§type Output = LockedAxes
type Output = LockedAxes
^ operator.source§impl BitXorAssign for LockedAxes
impl BitXorAssign for LockedAxes
source§fn bitxor_assign(&mut self, other: LockedAxes)
fn bitxor_assign(&mut self, other: LockedAxes)
Toggles the set of flags.
source§impl Clone for LockedAxes
impl Clone for LockedAxes
source§fn clone(&self) -> LockedAxes
fn clone(&self) -> LockedAxes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LockedAxes
impl Debug for LockedAxes
source§impl Extend<LockedAxes> for LockedAxes
impl Extend<LockedAxes> for LockedAxes
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = LockedAxes>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = LockedAxes>,
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<LockedAxes> for LockedAxes
impl FromIterator<LockedAxes> for LockedAxes
source§fn from_iter<T>(iterator: T) -> LockedAxeswhere
T: IntoIterator<Item = LockedAxes>,
fn from_iter<T>(iterator: T) -> LockedAxeswhere
T: IntoIterator<Item = LockedAxes>,
source§impl Hash for LockedAxes
impl Hash for LockedAxes
source§impl LowerHex for LockedAxes
impl LowerHex for LockedAxes
source§impl Not for LockedAxes
impl Not for LockedAxes
source§fn not(self) -> LockedAxes
fn not(self) -> LockedAxes
Returns the complement of this set of flags.
§type Output = LockedAxes
type Output = LockedAxes
! operator.source§impl Octal for LockedAxes
impl Octal for LockedAxes
source§impl Ord for LockedAxes
impl Ord for LockedAxes
source§fn cmp(&self, other: &LockedAxes) -> Ordering
fn cmp(&self, other: &LockedAxes) -> 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 LockedAxes
impl PartialEq for LockedAxes
source§fn eq(&self, other: &LockedAxes) -> bool
fn eq(&self, other: &LockedAxes) -> bool
self and other values to be equal, and is used
by ==.source§impl PartialOrd for LockedAxes
impl PartialOrd for LockedAxes
source§fn partial_cmp(&self, other: &LockedAxes) -> Option<Ordering>
fn partial_cmp(&self, other: &LockedAxes) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moresource§impl Sub for LockedAxes
impl Sub for LockedAxes
source§fn sub(self, other: LockedAxes) -> LockedAxes
fn sub(self, other: LockedAxes) -> LockedAxes
Returns the set difference of the two sets of flags.
§type Output = LockedAxes
type Output = LockedAxes
- operator.source§impl SubAssign for LockedAxes
impl SubAssign for LockedAxes
source§fn sub_assign(&mut self, other: LockedAxes)
fn sub_assign(&mut self, other: LockedAxes)
Disables all flags enabled in the set.
source§impl UpperHex for LockedAxes
impl UpperHex for LockedAxes
impl Copy for LockedAxes
impl Eq for LockedAxes
impl StructuralPartialEq for LockedAxes
Auto Trait Implementations§
impl RefUnwindSafe for LockedAxes
impl Send for LockedAxes
impl Sync for LockedAxes
impl Unpin for LockedAxes
impl UnwindSafe for LockedAxes
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn 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.§fn 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.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
impl<F, T> IntoSample<T> for Fwhere
T: FromSample<F>,
fn into_sample(self) -> T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.