pub struct ColorPair {
pub fg: RGBA,
pub bg: RGBA,
}
Expand description
Represents two colors together, a foreground and a background. Frequently used to represent a glyph rendered on a console with a solid background color.
Fields§
§fg: RGBA
The foreground color
bg: RGBA
The background color
Implementations§
Trait Implementations§
impl Copy for ColorPair
impl StructuralPartialEq for ColorPair
Auto Trait Implementations§
impl Freeze for ColorPair
impl RefUnwindSafe for ColorPair
impl Send for ColorPair
impl Sync for ColorPair
impl Unpin for ColorPair
impl UnwindSafe for ColorPair
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