pub enum RelativeCoordinateType {
Cartesian(CartesianCoordinate),
Horizontal(HorizontalCoordinate),
}
Expand description
A “Relative Coordinate” is a coordinate that has a variable or dependent element. It’s absolute coordinate is dependent on another absolute coordinate as a reference point.
Variants§
Cartesian(CartesianCoordinate)
Horizontal(HorizontalCoordinate)
Trait Implementations§
Source§impl Clone for RelativeCoordinateType
impl Clone for RelativeCoordinateType
Source§fn clone(&self) -> RelativeCoordinateType
fn clone(&self) -> RelativeCoordinateType
Returns a copy 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 RelativeCoordinateType
impl Debug for RelativeCoordinateType
Source§impl PartialEq for RelativeCoordinateType
impl PartialEq for RelativeCoordinateType
impl Copy for RelativeCoordinateType
impl StructuralPartialEq for RelativeCoordinateType
Auto Trait Implementations§
impl Freeze for RelativeCoordinateType
impl RefUnwindSafe for RelativeCoordinateType
impl Send for RelativeCoordinateType
impl Sync for RelativeCoordinateType
impl Unpin for RelativeCoordinateType
impl UnwindSafe for RelativeCoordinateType
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