pub struct ContactAccess<'a, U: UserDataTypes> {
pub contact: &'a mut Contact,
pub body_a: BodyAccess<'a, U>,
pub fixture_a: FixtureAccess<'a, U>,
pub body_b: BodyAccess<'a, U>,
pub fixture_b: FixtureAccess<'a, U>,
}
Fields§
§contact: &'a mut Contact
§body_a: BodyAccess<'a, U>
§fixture_a: FixtureAccess<'a, U>
§body_b: BodyAccess<'a, U>
§fixture_b: FixtureAccess<'a, U>
Auto Trait Implementations§
impl<'a, U> RefUnwindSafe for ContactAccess<'a, U>where
U: RefUnwindSafe,
impl<'a, U> !Send for ContactAccess<'a, U>
impl<'a, U> !Sync for ContactAccess<'a, U>
impl<'a, U> Unpin for ContactAccess<'a, U>where
U: Unpin,
impl<'a, U> !UnwindSafe for ContactAccess<'a, U>
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