Enum binaryninja::types::HighlightColor
source · pub enum HighlightColor {
NoHighlightColor {
alpha: u8,
},
StandardHighlightColor {
color: HighlightStandardColor,
alpha: u8,
},
MixedHighlightColor {
color: HighlightStandardColor,
mix_color: HighlightStandardColor,
mix: u8,
alpha: u8,
},
CustomHighlightColor {
r: u8,
g: u8,
b: u8,
alpha: u8,
},
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for HighlightColor
impl Clone for HighlightColor
source§fn clone(&self) -> HighlightColor
fn clone(&self) -> HighlightColor
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 HighlightColor
impl Debug for HighlightColor
impl Copy for HighlightColor
Auto Trait Implementations§
impl RefUnwindSafe for HighlightColor
impl Send for HighlightColor
impl Sync for HighlightColor
impl Unpin for HighlightColor
impl UnwindSafe for HighlightColor
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