Enum cairo::PathSegment
source · [−]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))
ClosePath
Trait Implementations
sourceimpl Clone for PathSegment
impl Clone for PathSegment
sourcefn clone(&self) -> PathSegment
fn clone(&self) -> PathSegment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PathSegment
impl Debug for PathSegment
sourceimpl Display for PathSegment
impl Display for PathSegment
sourceimpl PartialEq<PathSegment> for PathSegment
impl PartialEq<PathSegment> for PathSegment
sourcefn eq(&self, other: &PathSegment) -> bool
fn eq(&self, other: &PathSegment) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Copy for PathSegment
impl StructuralPartialEq for PathSegment
Auto Trait Implementations
impl RefUnwindSafe for PathSegment
impl Send for PathSegment
impl Sync for PathSegment
impl Unpin for PathSegment
impl UnwindSafe for PathSegment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more