Struct parry3d::shape::HeightFieldCellStatus
source · pub struct HeightFieldCellStatus(/* private fields */);
Expand description
The status of the cell of an heightfield.
Implementations§
source§impl HeightFieldCellStatus
impl HeightFieldCellStatus
sourcepub const ZIGZAG_SUBDIVISION: Self = _
pub const ZIGZAG_SUBDIVISION: Self = _
If this bit is set, the concerned heightfield cell is subdivided using a Z pattern.
sourcepub const LEFT_TRIANGLE_REMOVED: Self = _
pub const LEFT_TRIANGLE_REMOVED: Self = _
If this bit is set, the leftmost triangle of the concerned heightfield cell is removed.
sourcepub const RIGHT_TRIANGLE_REMOVED: Self = _
pub const RIGHT_TRIANGLE_REMOVED: Self = _
If this bit is set, the rightmost triangle of the concerned heightfield cell is removed.
sourcepub const CELL_REMOVED: Self = _
pub const CELL_REMOVED: Self = _
If this bit is set, both triangles of the concerned heightfield cell are removed.
source§impl HeightFieldCellStatus
impl HeightFieldCellStatus
sourcepub const fn bits(&self) -> u8
pub const fn bits(&self) -> u8
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u8) -> Option<Self>
pub const fn from_bits(bits: u8) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u8) -> Self
pub const fn from_bits_truncate(bits: u8) -> Self
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u8) -> Self
pub const fn from_bits_retain(bits: u8) -> Self
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
sourcepub fn toggle(&mut self, other: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl HeightFieldCellStatus
impl HeightFieldCellStatus
sourcepub const fn iter(&self) -> Iter<HeightFieldCellStatus>
pub const fn iter(&self) -> Iter<HeightFieldCellStatus>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
sourcepub const fn iter_names(&self) -> IterNames<HeightFieldCellStatus>
pub const fn iter_names(&self) -> IterNames<HeightFieldCellStatus>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
source§impl Binary for HeightFieldCellStatus
impl Binary for HeightFieldCellStatus
source§impl BitAnd for HeightFieldCellStatus
impl BitAnd for HeightFieldCellStatus
source§impl BitAndAssign for HeightFieldCellStatus
impl BitAndAssign for HeightFieldCellStatus
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOr for HeightFieldCellStatus
impl BitOr for HeightFieldCellStatus
source§fn bitor(self, other: HeightFieldCellStatus) -> Self
fn bitor(self, other: HeightFieldCellStatus) -> Self
The bitwise or (|
) of the bits in two flags values.
§type Output = HeightFieldCellStatus
type Output = HeightFieldCellStatus
|
operator.source§impl BitOrAssign for HeightFieldCellStatus
impl BitOrAssign for HeightFieldCellStatus
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXor for HeightFieldCellStatus
impl BitXor for HeightFieldCellStatus
source§impl BitXorAssign for HeightFieldCellStatus
impl BitXorAssign for HeightFieldCellStatus
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Clone for HeightFieldCellStatus
impl Clone for HeightFieldCellStatus
source§fn clone(&self) -> HeightFieldCellStatus
fn clone(&self) -> HeightFieldCellStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HeightFieldCellStatus
impl Debug for HeightFieldCellStatus
source§impl Default for HeightFieldCellStatus
impl Default for HeightFieldCellStatus
source§fn default() -> HeightFieldCellStatus
fn default() -> HeightFieldCellStatus
source§impl Extend<HeightFieldCellStatus> for HeightFieldCellStatus
impl Extend<HeightFieldCellStatus> for HeightFieldCellStatus
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
The bitwise or (|
) of the bits in each flags value.
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 Flags for HeightFieldCellStatus
impl Flags for HeightFieldCellStatus
source§const FLAGS: &'static [Flag<HeightFieldCellStatus>] = _
const FLAGS: &'static [Flag<HeightFieldCellStatus>] = _
source§fn from_bits_retain(bits: u8) -> HeightFieldCellStatus
fn from_bits_retain(bits: u8) -> HeightFieldCellStatus
source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
source§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read moresource§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moresource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<HeightFieldCellStatus> for HeightFieldCellStatus
impl FromIterator<HeightFieldCellStatus> for HeightFieldCellStatus
source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
source§impl Hash for HeightFieldCellStatus
impl Hash for HeightFieldCellStatus
source§impl IntoIterator for HeightFieldCellStatus
impl IntoIterator for HeightFieldCellStatus
source§impl LowerHex for HeightFieldCellStatus
impl LowerHex for HeightFieldCellStatus
source§impl Not for HeightFieldCellStatus
impl Not for HeightFieldCellStatus
source§impl Octal for HeightFieldCellStatus
impl Octal for HeightFieldCellStatus
source§impl Ord for HeightFieldCellStatus
impl Ord for HeightFieldCellStatus
source§fn cmp(&self, other: &HeightFieldCellStatus) -> Ordering
fn cmp(&self, other: &HeightFieldCellStatus) -> 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 HeightFieldCellStatus
impl PartialEq for HeightFieldCellStatus
source§fn eq(&self, other: &HeightFieldCellStatus) -> bool
fn eq(&self, other: &HeightFieldCellStatus) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for HeightFieldCellStatus
impl PartialOrd for HeightFieldCellStatus
source§fn partial_cmp(&self, other: &HeightFieldCellStatus) -> Option<Ordering>
fn partial_cmp(&self, other: &HeightFieldCellStatus) -> 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 HeightFieldCellStatus
impl Sub for HeightFieldCellStatus
source§fn sub(self, other: Self) -> Self
fn sub(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
§type Output = HeightFieldCellStatus
type Output = HeightFieldCellStatus
-
operator.source§impl SubAssign for HeightFieldCellStatus
impl SubAssign for HeightFieldCellStatus
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
source§impl UpperHex for HeightFieldCellStatus
impl UpperHex for HeightFieldCellStatus
impl Copy for HeightFieldCellStatus
impl Eq for HeightFieldCellStatus
impl StructuralPartialEq for HeightFieldCellStatus
Auto Trait Implementations§
impl Freeze for HeightFieldCellStatus
impl RefUnwindSafe for HeightFieldCellStatus
impl Send for HeightFieldCellStatus
impl Sync for HeightFieldCellStatus
impl Unpin for HeightFieldCellStatus
impl UnwindSafe for HeightFieldCellStatus
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§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
.source§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
.source§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.source§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.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moresource§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).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.