pub trait ContactFilter<U: UserDataTypes>: Any {
// Required method
fn should_collide(
&mut self,
body_a: BodyAccess<'_, U>,
fixture_a: FixtureAccess<'_, U>,
body_b: BodyAccess<'_, U>,
fixture_b: FixtureAccess<'_, U>
) -> bool;
}