pub enum ContactCache {
Sat(SatCache),
Simplex(SimplexCache),
}Expand description
Contact cache: SAT or GJK simplex. (b3ContactCache)
Variants§
Sat(SatCache)
Simplex(SimplexCache)
Trait Implementations§
Source§impl Clone for ContactCache
impl Clone for ContactCache
Source§fn clone(&self) -> ContactCache
fn clone(&self) -> ContactCache
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ContactCache
Source§impl Debug for ContactCache
impl Debug for ContactCache
Source§impl Default for ContactCache
impl Default for ContactCache
Source§impl PartialEq for ContactCache
impl PartialEq for ContactCache
impl StructuralPartialEq for ContactCache
Auto Trait Implementations§
impl Freeze for ContactCache
impl RefUnwindSafe for ContactCache
impl Send for ContactCache
impl Sync for ContactCache
impl Unpin for ContactCache
impl UnsafeUnpin for ContactCache
impl UnwindSafe for ContactCache
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