pub struct Cartesian {
pub x: f64,
pub y: f64,
pub z: f64,
}
Expand description
Cartesian Coordinates
Fields§
§x: f64
§y: f64
§z: f64
Trait Implementations§
Source§impl From<StarCoordinates> for Cartesian
impl From<StarCoordinates> for Cartesian
Source§fn from(coord: StarCoordinates) -> Self
fn from(coord: StarCoordinates) -> Self
Converts to this type from the input type.
impl Copy for Cartesian
Auto Trait Implementations§
impl Freeze for Cartesian
impl RefUnwindSafe for Cartesian
impl Send for Cartesian
impl Sync for Cartesian
impl Unpin for Cartesian
impl UnwindSafe for Cartesian
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