pub enum PdfPageObjectLineCap {
Butt = 0,
Round = 1,
Square = 2,
}Expand description
The shape that should be used at the ends of open stroked paths.
A formal definition of these styles can be found in Section 4.3.2 of the PDF Reference Manual, version 1.7, on page 216.
Variants§
Butt = 0
The stroke is squared off at the endpoint of the path. There is no projection beyond the end of the path.
Round = 1
A semicircular arc with a diameter equal to the line width is drawn around the endpoint and filled in.
Square = 2
The stroke continues beyond the endpoint of the path for a distance equal to half the line width and is squared off.
Trait Implementations§
Source§impl Clone for PdfPageObjectLineCap
impl Clone for PdfPageObjectLineCap
Source§fn clone(&self) -> PdfPageObjectLineCap
fn clone(&self) -> PdfPageObjectLineCap
Returns a duplicate 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 PdfPageObjectLineCap
impl Debug for PdfPageObjectLineCap
Source§impl PartialEq for PdfPageObjectLineCap
impl PartialEq for PdfPageObjectLineCap
impl Copy for PdfPageObjectLineCap
impl StructuralPartialEq for PdfPageObjectLineCap
Auto Trait Implementations§
impl Freeze for PdfPageObjectLineCap
impl RefUnwindSafe for PdfPageObjectLineCap
impl Send for PdfPageObjectLineCap
impl Sync for PdfPageObjectLineCap
impl Unpin for PdfPageObjectLineCap
impl UnwindSafe for PdfPageObjectLineCap
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more