#[repr(i32)]pub enum ForceShape {
Sphere = 0,
Cylinder = 1,
Box = 2,
Hemisphere = 3,
}Expand description
Influence volume shape for a force (FOR_)
Variants§
Sphere = 0
Spherical influence volume
Cylinder = 1
Cylindrical influence volume
Box = 2
Box influence volume
Hemisphere = 3
Hemispherical influence volume
Trait Implementations§
Source§impl Clone for ForceShape
impl Clone for ForceShape
Source§fn clone(&self) -> ForceShape
fn clone(&self) -> ForceShape
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ForceShape
Source§impl Debug for ForceShape
impl Debug for ForceShape
impl Eq for ForceShape
Source§impl Hash for ForceShape
impl Hash for ForceShape
Source§impl PartialEq for ForceShape
impl PartialEq for ForceShape
impl StructuralPartialEq for ForceShape
Auto Trait Implementations§
impl Freeze for ForceShape
impl RefUnwindSafe for ForceShape
impl Send for ForceShape
impl Sync for ForceShape
impl Unpin for ForceShape
impl UnsafeUnpin for ForceShape
impl UnwindSafe for ForceShape
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