pub enum LineEndType {
None,
Triangle,
Stealth,
Diamond,
Oval,
Arrow,
}
Expand description
This simple type represents the shape decoration that appears at the ends of lines. For example, one choice is an arrow head.
Variants§
Trait Implementations§
Source§impl Clone for LineEndType
impl Clone for LineEndType
Source§fn clone(&self) -> LineEndType
fn clone(&self) -> LineEndType
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 LineEndType
impl Debug for LineEndType
Source§impl FromStr for LineEndType
impl FromStr for LineEndType
Source§impl PartialEq for LineEndType
impl PartialEq for LineEndType
impl Copy for LineEndType
impl StructuralPartialEq for LineEndType
Auto Trait Implementations§
impl Freeze for LineEndType
impl RefUnwindSafe for LineEndType
impl Send for LineEndType
impl Sync for LineEndType
impl Unpin for LineEndType
impl UnwindSafe for LineEndType
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