pub enum PolarConversion {
RectangularToPolar,
PolarToRectangular,
}Expand description
“rectangular to polar” | “polar to rectangular”
Variants§
Trait Implementations§
Source§impl Clone for PolarConversion
impl Clone for PolarConversion
Source§fn clone(&self) -> PolarConversion
fn clone(&self) -> PolarConversion
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 moreimpl Copy for PolarConversion
Source§impl Debug for PolarConversion
impl Debug for PolarConversion
impl Eq for PolarConversion
Source§impl PartialEq for PolarConversion
impl PartialEq for PolarConversion
Source§fn eq(&self, other: &PolarConversion) -> bool
fn eq(&self, other: &PolarConversion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PolarConversion
Auto Trait Implementations§
impl Freeze for PolarConversion
impl RefUnwindSafe for PolarConversion
impl Send for PolarConversion
impl Sync for PolarConversion
impl Unpin for PolarConversion
impl UnsafeUnpin for PolarConversion
impl UnwindSafe for PolarConversion
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