pub enum SeriesHatch {
None,
Forward,
Backward,
Cross,
Horizontal,
Vertical,
}Expand description
How a filled region (a bar, an area, a pie slice) carries its series’
pattern. None is a plain fill; the rest are line hatches at the named
angle, drawn in a contrasting tone over the fill.
Variants§
None
No hatch — a plain fill.
Forward
Parallel lines rising to the right (45°).
Backward
Parallel lines falling to the right (135°).
Cross
Both diagonals.
Horizontal
Parallel horizontal lines.
Vertical
Parallel vertical lines.
Trait Implementations§
Source§impl Clone for SeriesHatch
impl Clone for SeriesHatch
Source§fn clone(&self) -> SeriesHatch
fn clone(&self) -> SeriesHatch
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 SeriesHatch
Source§impl Debug for SeriesHatch
impl Debug for SeriesHatch
impl Eq for SeriesHatch
Source§impl Hash for SeriesHatch
impl Hash for SeriesHatch
Source§impl PartialEq for SeriesHatch
impl PartialEq for SeriesHatch
Source§fn eq(&self, other: &SeriesHatch) -> bool
fn eq(&self, other: &SeriesHatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SeriesHatch
Auto Trait Implementations§
impl Freeze for SeriesHatch
impl RefUnwindSafe for SeriesHatch
impl Send for SeriesHatch
impl Sync for SeriesHatch
impl Unpin for SeriesHatch
impl UnsafeUnpin for SeriesHatch
impl UnwindSafe for SeriesHatch
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