Skip to main content

Obstacle

Trait Obstacle 

Source
pub trait Obstacle {
    // Required method
    fn snapshot(&self) -> ObstacleSnapshot;
}
Expand description

Any entity that can expose itself as an obstacle to foreign domains.

Required Methods§

Source

fn snapshot(&self) -> ObstacleSnapshot

Produce an instantaneous snapshot for broadphase insertion.

Implementors§