pub enum ChildGeometry<'a> {
Capsule(Capsule),
Hull(&'a HullData),
Mesh(Mesh<'a>),
Sphere(Sphere),
}Expand description
Child geometry of a compound. (union half of b3ChildShape)
Variants§
Trait Implementations§
Source§impl<'a> Clone for ChildGeometry<'a>
impl<'a> Clone for ChildGeometry<'a>
Source§fn clone(&self) -> ChildGeometry<'a>
fn clone(&self) -> ChildGeometry<'a>
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<'a> Copy for ChildGeometry<'a>
Auto Trait Implementations§
impl<'a> Freeze for ChildGeometry<'a>
impl<'a> RefUnwindSafe for ChildGeometry<'a>
impl<'a> Send for ChildGeometry<'a>
impl<'a> Sync for ChildGeometry<'a>
impl<'a> Unpin for ChildGeometry<'a>
impl<'a> UnsafeUnpin for ChildGeometry<'a>
impl<'a> UnwindSafe for ChildGeometry<'a>
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