pub enum PdfPathSegmentType {
Unknown,
LineTo,
BezierTo,
MoveTo,
}Expand description
The type of a single PdfPathSegment.
Variants§
Trait Implementations§
source§impl Clone for PdfPathSegmentType
impl Clone for PdfPathSegmentType
source§fn clone(&self) -> PdfPathSegmentType
fn clone(&self) -> PdfPathSegmentType
Returns a copy 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 PdfPathSegmentType
impl Debug for PdfPathSegmentType
source§impl PartialEq<PdfPathSegmentType> for PdfPathSegmentType
impl PartialEq<PdfPathSegmentType> for PdfPathSegmentType
source§fn eq(&self, other: &PdfPathSegmentType) -> bool
fn eq(&self, other: &PdfPathSegmentType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<PdfPathSegmentType> for PdfPathSegmentType
impl PartialOrd<PdfPathSegmentType> for PdfPathSegmentType
source§fn partial_cmp(&self, other: &PdfPathSegmentType) -> Option<Ordering>
fn partial_cmp(&self, other: &PdfPathSegmentType) -> Option<Ordering>
1.0.0 · source§fn 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§
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