pub enum PdfPathSegmentType {
Unknown,
LineTo,
BezierTo,
MoveTo,
}Expand description
The type of a single PdfPathSegment.
Variants
Unknown
LineTo
BezierTo
MoveTo
Trait Implementations
sourceimpl Clone for PdfPathSegmentType
impl Clone for PdfPathSegmentType
sourcefn clone(&self) -> PdfPathSegmentType
fn clone(&self) -> PdfPathSegmentType
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 moresourceimpl Debug for PdfPathSegmentType
impl Debug for PdfPathSegmentType
sourceimpl PartialEq<PdfPathSegmentType> for PdfPathSegmentType
impl PartialEq<PdfPathSegmentType> for PdfPathSegmentType
sourcefn eq(&self, other: &PdfPathSegmentType) -> bool
fn eq(&self, other: &PdfPathSegmentType) -> bool
sourceimpl PartialOrd<PdfPathSegmentType> for PdfPathSegmentType
impl PartialOrd<PdfPathSegmentType> for PdfPathSegmentType
sourcefn partial_cmp(&self, other: &PdfPathSegmentType) -> Option<Ordering>
fn partial_cmp(&self, other: &PdfPathSegmentType) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for PdfPathSegmentType
impl StructuralPartialEq for PdfPathSegmentType
Auto Trait Implementations
impl RefUnwindSafe for PdfPathSegmentType
impl Send for PdfPathSegmentType
impl Sync for PdfPathSegmentType
impl Unpin for PdfPathSegmentType
impl UnwindSafe for PdfPathSegmentType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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