pub struct PointPolar {
pub rho: f32,
pub theta: f32,
}Fields§
§rho: f32§theta: f32Trait Implementations§
Source§impl Clone for PointPolar
impl Clone for PointPolar
Source§fn clone(&self) -> PointPolar
fn clone(&self) -> PointPolar
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 PointPolar
Source§impl Debug for PointPolar
impl Debug for PointPolar
Source§impl Default for PointPolar
impl Default for PointPolar
Source§fn default() -> PointPolar
fn default() -> PointPolar
Returns the “default value” for a type. Read more
Source§impl From<NppPointPolar> for PointPolar
impl From<NppPointPolar> for PointPolar
Source§fn from(value: NppPointPolar) -> Self
fn from(value: NppPointPolar) -> Self
Converts to this type from the input type.
Source§impl From<PointPolar> for NppPointPolar
impl From<PointPolar> for NppPointPolar
Source§fn from(value: PointPolar) -> Self
fn from(value: PointPolar) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PointPolar
impl PartialEq for PointPolar
Source§fn eq(&self, other: &PointPolar) -> bool
fn eq(&self, other: &PointPolar) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PointPolar
impl PartialOrd for PointPolar
impl StructuralPartialEq for PointPolar
Auto Trait Implementations§
impl Freeze for PointPolar
impl RefUnwindSafe for PointPolar
impl Send for PointPolar
impl Sync for PointPolar
impl Unpin for PointPolar
impl UnsafeUnpin for PointPolar
impl UnwindSafe for PointPolar
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