pub struct Theme {
pub bar_fg: Color,
pub bar_bg: Color,
pub deleted: Color,
pub flagged: Color,
pub tagged: Color,
pub header: Color,
pub quoted: Vec<Color>,
pub search: Style,
pub error: Style,
/* private fields */
}Fields§
§bar_fg: Color§bar_bg: Color§deleted: Color§flagged: Color§tagged: Color§header: Color§quoted: Vec<Color>Quote-depth palette (mutt’s color quoted, quoted1…): depth
d takes entry (d-1) mod len; empty = quotes stay untinted.
search: StyleSearch-hit highlight in the pager (mutt’s color search).
error: StyleError statuses on the bottom line (mutt’s color error,
bold bright red by default).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Theme
impl RefUnwindSafe for Theme
impl Send for Theme
impl Sync for Theme
impl Unpin for Theme
impl UnsafeUnpin for Theme
impl UnwindSafe for Theme
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