pub enum GraphColor {
Blue,
Green,
Grey,
Ink,
Magenta,
Orange,
Purple,
Red,
Teal,
Yellow,
}
Expand description
The color used for a graph segment within a marker graph.
Variants§
Trait Implementations§
Source§impl Clone for GraphColor
impl Clone for GraphColor
Source§fn clone(&self) -> GraphColor
fn clone(&self) -> GraphColor
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 GraphColor
impl Debug for GraphColor
Source§impl Ord for GraphColor
impl Ord for GraphColor
Source§fn cmp(&self, other: &GraphColor) -> Ordering
fn cmp(&self, other: &GraphColor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GraphColor
impl PartialEq for GraphColor
Source§impl PartialOrd for GraphColor
impl PartialOrd for GraphColor
Source§impl Serialize for GraphColor
impl Serialize for GraphColor
impl Copy for GraphColor
impl Eq for GraphColor
impl StructuralPartialEq for GraphColor
Auto Trait Implementations§
impl Freeze for GraphColor
impl RefUnwindSafe for GraphColor
impl Send for GraphColor
impl Sync for GraphColor
impl Unpin for GraphColor
impl UnwindSafe for GraphColor
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