pub struct TriangleCache {
pub triangle_index: i32,
pub cache: ContactCache,
}Expand description
Per-triangle cache for mesh contacts. (b3TriangleCache)
Fields§
§triangle_index: i32§cache: ContactCacheTrait Implementations§
Source§impl Clone for TriangleCache
impl Clone for TriangleCache
Source§fn clone(&self) -> TriangleCache
fn clone(&self) -> TriangleCache
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 TriangleCache
Source§impl Debug for TriangleCache
impl Debug for TriangleCache
Source§impl Default for TriangleCache
impl Default for TriangleCache
Source§impl PartialEq for TriangleCache
impl PartialEq for TriangleCache
impl StructuralPartialEq for TriangleCache
Auto Trait Implementations§
impl Freeze for TriangleCache
impl RefUnwindSafe for TriangleCache
impl Send for TriangleCache
impl Sync for TriangleCache
impl Unpin for TriangleCache
impl UnsafeUnpin for TriangleCache
impl UnwindSafe for TriangleCache
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