pub struct STLData<T: Triangle<P>, P: Point> {
pub header: STLHeader,
pub trigs: Vec<T>,
/* private fields */
}
Fields§
§header: STLHeader
§trigs: Vec<T>
Auto Trait Implementations§
impl<T, P> Freeze for STLData<T, P>
impl<T, P> RefUnwindSafe for STLData<T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, P> Send for STLData<T, P>
impl<T, P> Sync for STLData<T, P>
impl<T, P> Unpin for STLData<T, P>
impl<T, P> UnwindSafe for STLData<T, P>where
P: UnwindSafe,
T: UnwindSafe,
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