Struct svg2polylines::CoordinatePair [] [src]

#[repr(C)]
pub struct CoordinatePair { pub x: f64, pub y: f64, }

A CoordinatePair consists of an x and y coordinate.

Fields

Trait Implementations

impl Debug for CoordinatePair
[src]

Formats the value using the given formatter.

impl PartialEq for CoordinatePair
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Copy for CoordinatePair
[src]

impl Clone for CoordinatePair
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<(f64, f64)> for CoordinatePair
[src]

Performs the conversion.