pub enum SpiralShape {
Square,
Hexagonal,
Octagonal,
Circle,
}Expand description
Spiral geometry shape.
Variants§
Trait Implementations§
Source§impl Clone for SpiralShape
impl Clone for SpiralShape
Source§fn clone(&self) -> SpiralShape
fn clone(&self) -> SpiralShape
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 SpiralShape
impl Debug for SpiralShape
Source§impl<'de> Deserialize<'de> for SpiralShape
impl<'de> Deserialize<'de> for SpiralShape
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SpiralShape
impl PartialEq for SpiralShape
Source§impl Serialize for SpiralShape
impl Serialize for SpiralShape
impl Copy for SpiralShape
impl Eq for SpiralShape
impl StructuralPartialEq for SpiralShape
Auto Trait Implementations§
impl Freeze for SpiralShape
impl RefUnwindSafe for SpiralShape
impl Send for SpiralShape
impl Sync for SpiralShape
impl Unpin for SpiralShape
impl UnsafeUnpin for SpiralShape
impl UnwindSafe for SpiralShape
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