pub enum ObstacleType {
Cylinder,
Box,
OrientedBox,
}Expand description
Obstacle type
Variants§
Cylinder
Cylinder obstacle
Box
Axis-aligned bounding box
OrientedBox
Oriented bounding box (rotated in Y axis)
Trait Implementations§
Source§impl Clone for ObstacleType
impl Clone for ObstacleType
Source§fn clone(&self) -> ObstacleType
fn clone(&self) -> ObstacleType
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 ObstacleType
impl Debug for ObstacleType
Source§impl PartialEq for ObstacleType
impl PartialEq for ObstacleType
impl Copy for ObstacleType
impl StructuralPartialEq for ObstacleType
Auto Trait Implementations§
impl Freeze for ObstacleType
impl RefUnwindSafe for ObstacleType
impl Send for ObstacleType
impl Sync for ObstacleType
impl Unpin for ObstacleType
impl UnsafeUnpin for ObstacleType
impl UnwindSafe for ObstacleType
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