pub enum CapStyle {
Butt,
Round,
ProjectingSquare,
}
Expand description
Line cap styles, as described in section 8.4.3.4 of the PDF specification.
Variants§
Butt
Truncate the line squarely through the endpoint.
Round
Include a circle of line-width diameter around the endpoint.
ProjectingSquare
Include a square around the endpoint, so the line continues for half a line-width through the endpoint.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CapStyle
impl RefUnwindSafe for CapStyle
impl Send for CapStyle
impl Sync for CapStyle
impl Unpin for CapStyle
impl UnwindSafe for CapStyle
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