pub enum ObstacleClass {
Static,
Dynamic,
Unknown,
}Expand description
Classification category for an obstacle.
Variants§
Static
Obstacle appears wall-like / elongated in at least one axis.
Dynamic
Compact obstacle that could be a moving object.
Unknown
Cannot determine class from geometry alone.
Trait Implementations§
Source§impl Clone for ObstacleClass
impl Clone for ObstacleClass
Source§fn clone(&self) -> ObstacleClass
fn clone(&self) -> ObstacleClass
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 ObstacleClass
impl Debug for ObstacleClass
Source§impl PartialEq for ObstacleClass
impl PartialEq for ObstacleClass
impl Copy for ObstacleClass
impl Eq for ObstacleClass
impl StructuralPartialEq for ObstacleClass
Auto Trait Implementations§
impl Freeze for ObstacleClass
impl RefUnwindSafe for ObstacleClass
impl Send for ObstacleClass
impl Sync for ObstacleClass
impl Unpin for ObstacleClass
impl UnsafeUnpin for ObstacleClass
impl UnwindSafe for ObstacleClass
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