pub struct CompoundHull<'a> {
pub hull: &'a HullData,
pub transform: Transform,
pub material_index: i32,
}Expand description
A hull that lives in a compound. (b3CompoundHull)
Fields§
§hull: &'a HullData§transform: Transform§material_index: i32Trait Implementations§
Source§impl<'a> Clone for CompoundHull<'a>
impl<'a> Clone for CompoundHull<'a>
Source§fn clone(&self) -> CompoundHull<'a>
fn clone(&self) -> CompoundHull<'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 CompoundHull<'a>
Auto Trait Implementations§
impl<'a> Freeze for CompoundHull<'a>
impl<'a> RefUnwindSafe for CompoundHull<'a>
impl<'a> Send for CompoundHull<'a>
impl<'a> Sync for CompoundHull<'a>
impl<'a> Unpin for CompoundHull<'a>
impl<'a> UnsafeUnpin for CompoundHull<'a>
impl<'a> UnwindSafe for CompoundHull<'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