pub enum TessellationWrapper {
Tessellation(Vec<Point>),
Tessellation3D(Vec<Point3D>),
}
Expand description
Tessellation Wrapper to handle both 2D and 3D cases
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TessellationWrapper
impl Clone for TessellationWrapper
Source§fn clone(&self) -> TessellationWrapper
fn clone(&self) -> TessellationWrapper
Returns a duplicate 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 TessellationWrapper
impl Debug for TessellationWrapper
Source§impl PartialEq for TessellationWrapper
impl PartialEq for TessellationWrapper
impl StructuralPartialEq for TessellationWrapper
Auto Trait Implementations§
impl Freeze for TessellationWrapper
impl RefUnwindSafe for TessellationWrapper
impl Send for TessellationWrapper
impl Sync for TessellationWrapper
impl Unpin for TessellationWrapper
impl UnwindSafe for TessellationWrapper
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