pub struct VectorPathCommandLine {
pub end_point: Point,
}
Expand description
A straight line to a given point
Fields§
§end_point: Point
The end point of the straight line
Trait Implementations§
Source§impl Clone for VectorPathCommandLine
impl Clone for VectorPathCommandLine
Source§fn clone(&self) -> VectorPathCommandLine
fn clone(&self) -> VectorPathCommandLine
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 VectorPathCommandLine
impl Debug for VectorPathCommandLine
Source§impl Default for VectorPathCommandLine
impl Default for VectorPathCommandLine
Source§fn default() -> VectorPathCommandLine
fn default() -> VectorPathCommandLine
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VectorPathCommandLine
impl<'de> Deserialize<'de> for VectorPathCommandLine
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 VectorPathCommandLine
impl PartialEq for VectorPathCommandLine
Source§impl Serialize for VectorPathCommandLine
impl Serialize for VectorPathCommandLine
impl StructuralPartialEq for VectorPathCommandLine
Auto Trait Implementations§
impl Freeze for VectorPathCommandLine
impl RefUnwindSafe for VectorPathCommandLine
impl Send for VectorPathCommandLine
impl Sync for VectorPathCommandLine
impl Unpin for VectorPathCommandLine
impl UnwindSafe for VectorPathCommandLine
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