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§
Sourcefn snapshot(&self) -> ObstacleSnapshot
fn snapshot(&self) -> ObstacleSnapshot
Produce an instantaneous snapshot for broadphase insertion.