Enum display::DisplayColor
source · [−]pub enum DisplayColor {
Show 18 variants
ActionBreak,
ActionDrop,
ActionEdit,
ActionExec,
ActionFixup,
ActionPick,
ActionReword,
ActionSquash,
ActionLabel,
ActionReset,
ActionMerge,
DiffAddColor,
DiffChangeColor,
DiffRemoveColor,
DiffContextColor,
DiffWhitespaceColor,
IndicatorColor,
Normal,
}Expand description
An abstraction of colors to display.
Variants
ActionBreak
The color for the break action.
ActionDrop
The color for the drop action.
ActionEdit
The color for the edit action.
ActionExec
The color for the exec action.
ActionFixup
The color for the fixup action.
ActionPick
The color for the pick action.
ActionReword
The color for the reword action.
ActionSquash
The color for the squash action.
ActionLabel
The color for the label action.
ActionReset
The color for the reset action.
ActionMerge
The color for the merge action.
DiffAddColor
The color for added lines in a diff.
DiffChangeColor
The color for changed lines in a diff.
DiffRemoveColor
The color for removed lines in a diff.
DiffContextColor
The color for context lines in a diff.
DiffWhitespaceColor
The color for whitespace characters in a diff.
IndicatorColor
The color for indicator text.
Normal
The color for the standard text.
Trait Implementations
sourceimpl Clone for DisplayColor
impl Clone for DisplayColor
sourcefn clone(&self) -> DisplayColor
fn clone(&self) -> DisplayColor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DisplayColor
impl Debug for DisplayColor
sourceimpl PartialEq<DisplayColor> for DisplayColor
impl PartialEq<DisplayColor> for DisplayColor
impl Copy for DisplayColor
impl Eq for DisplayColor
impl StructuralEq for DisplayColor
impl StructuralPartialEq for DisplayColor
Auto Trait Implementations
impl RefUnwindSafe for DisplayColor
impl Send for DisplayColor
impl Sync for DisplayColor
impl Unpin for DisplayColor
impl UnwindSafe for DisplayColor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more