pub struct VertexDistCmd {
pub x: f64,
pub y: f64,
pub dist: f64,
pub cmd: u32,
}Expand description
Like VertexDist but with an additional path command.
Port of C++ vertex_dist_cmd.
Fields§
§x: f64§y: f64§dist: f64§cmd: u32Implementations§
Trait Implementations§
Source§impl Clone for VertexDistCmd
impl Clone for VertexDistCmd
Source§fn clone(&self) -> VertexDistCmd
fn clone(&self) -> VertexDistCmd
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 VertexDistCmd
impl Debug for VertexDistCmd
impl Copy for VertexDistCmd
Auto Trait Implementations§
impl Freeze for VertexDistCmd
impl RefUnwindSafe for VertexDistCmd
impl Send for VertexDistCmd
impl Sync for VertexDistCmd
impl Unpin for VertexDistCmd
impl UnwindSafe for VertexDistCmd
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