pub enum TesselationWrapper {
Tesselation(Vec<Point>),
Tesselation3D(Vec<Point3D>),
}Expand description
Tesselation Wrapper to handle both 2D and 3D cases
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TesselationWrapper
impl Clone for TesselationWrapper
Source§fn clone(&self) -> TesselationWrapper
fn clone(&self) -> TesselationWrapper
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TesselationWrapper
impl Debug for TesselationWrapper
Source§impl PartialEq for TesselationWrapper
impl PartialEq for TesselationWrapper
impl StructuralPartialEq for TesselationWrapper
Auto Trait Implementations§
impl Freeze for TesselationWrapper
impl RefUnwindSafe for TesselationWrapper
impl Send for TesselationWrapper
impl Sync for TesselationWrapper
impl Unpin for TesselationWrapper
impl UnwindSafe for TesselationWrapper
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