pub enum ArrowStyle {
None,
Simple,
Fancy,
}Expand description
Arrow style for annotations connecting text to a data point.
Variants§
None
No arrow is drawn; only the text is shown.
Simple
A simple line arrow with a small triangular head.
Fancy
A wider, more prominent arrowhead.
Trait Implementations§
Source§impl Clone for ArrowStyle
impl Clone for ArrowStyle
Source§fn clone(&self) -> ArrowStyle
fn clone(&self) -> ArrowStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ArrowStyle
Source§impl Debug for ArrowStyle
impl Debug for ArrowStyle
impl Eq for ArrowStyle
Source§impl PartialEq for ArrowStyle
impl PartialEq for ArrowStyle
Source§fn eq(&self, other: &ArrowStyle) -> bool
fn eq(&self, other: &ArrowStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ArrowStyle
Auto Trait Implementations§
impl Freeze for ArrowStyle
impl RefUnwindSafe for ArrowStyle
impl Send for ArrowStyle
impl Sync for ArrowStyle
impl Unpin for ArrowStyle
impl UnsafeUnpin for ArrowStyle
impl UnwindSafe for ArrowStyle
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