pub enum CollisionType {
Inelastic,
Elastic,
BoomNozzleHasClearedTheReceiversRefuelingReceptacle,
Unspecified(u8),
}Expand description
UID 189
Variants§
Trait Implementations§
Source§impl Clone for CollisionType
impl Clone for CollisionType
Source§fn clone(&self) -> CollisionType
fn clone(&self) -> CollisionType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CollisionType
impl Debug for CollisionType
Source§impl Default for CollisionType
impl Default for CollisionType
Source§impl Display for CollisionType
impl Display for CollisionType
Source§impl From<CollisionType> for u8
impl From<CollisionType> for u8
Source§fn from(value: CollisionType) -> Self
fn from(value: CollisionType) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CollisionType
impl From<u8> for CollisionType
Source§impl Hash for CollisionType
impl Hash for CollisionType
Source§impl PartialEq for CollisionType
impl PartialEq for CollisionType
impl Copy for CollisionType
impl Eq for CollisionType
impl StructuralPartialEq for CollisionType
Auto Trait Implementations§
impl Freeze for CollisionType
impl RefUnwindSafe for CollisionType
impl Send for CollisionType
impl Sync for CollisionType
impl Unpin for CollisionType
impl UnwindSafe for CollisionType
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
Mutably borrows from an owned value. Read more