Enum cairo::PathSegment 
                   
                       [−]
                   
               [src]
pub enum PathSegment {
    MoveTo((f64, f64)),
    LineTo((f64, f64)),
    CurveTo((f64, f64), (f64, f64), (f64, f64)),
    ClosePath,
}Variants
MoveTo((f64, f64))LineTo((f64, f64))CurveTo((f64, f64), (f64, f64), (f64, f64))ClosePathTrait Implementations
impl Debug for PathSegment[src]
impl Clone for PathSegment[src]
fn clone(&self) -> PathSegment
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Copy for PathSegment[src]
impl PartialEq for PathSegment[src]
fn eq(&self, __arg_0: &PathSegment) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PathSegment) -> bool
This method tests for !=.