pub struct HeaderRules {
pub ignore: Vec<String>,
pub unignore: Vec<String>,
pub order: Vec<String>,
}Expand description
mutt’s ignore/unignore/hdr_order: which headers the pager’s brief
view shows, and in what order. Entries are lowercase name
prefixes; * matches everything; unignore wins over ignore.
Fields§
§ignore: Vec<String>§unignore: Vec<String>§order: Vec<String>Trait Implementations§
Source§impl Clone for HeaderRules
impl Clone for HeaderRules
Source§fn clone(&self) -> HeaderRules
fn clone(&self) -> HeaderRules
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HeaderRules
impl Debug for HeaderRules
Source§impl Default for HeaderRules
impl Default for HeaderRules
Source§fn default() -> HeaderRules
fn default() -> HeaderRules
The classic view: everything hidden except the usual five, in their usual order.
Auto Trait Implementations§
impl Freeze for HeaderRules
impl RefUnwindSafe for HeaderRules
impl Send for HeaderRules
impl Sync for HeaderRules
impl Unpin for HeaderRules
impl UnsafeUnpin for HeaderRules
impl UnwindSafe for HeaderRules
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