pub enum TessellationKind {
Regular,
SemiRegular,
Irregular,
}Expand description
Broad tessellation families.
Variants§
Regular
Regular tessellation.
SemiRegular
Semi-regular tessellation.
Irregular
Irregular tessellation.
Trait Implementations§
Source§impl Clone for TessellationKind
impl Clone for TessellationKind
Source§fn clone(&self) -> TessellationKind
fn clone(&self) -> TessellationKind
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 moreSource§impl Debug for TessellationKind
impl Debug for TessellationKind
Source§impl PartialEq for TessellationKind
impl PartialEq for TessellationKind
Source§fn eq(&self, other: &TessellationKind) -> bool
fn eq(&self, other: &TessellationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TessellationKind
impl Eq for TessellationKind
impl StructuralPartialEq for TessellationKind
Auto Trait Implementations§
impl Freeze for TessellationKind
impl RefUnwindSafe for TessellationKind
impl Send for TessellationKind
impl Sync for TessellationKind
impl Unpin for TessellationKind
impl UnsafeUnpin for TessellationKind
impl UnwindSafe for TessellationKind
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