pub enum ReaderProfile {
Reader,
Docs,
Links,
Research,
Compact,
Verbose,
}Expand description
Persisted reader profile preference for terminal presentation.
Variants§
Reader
Balanced reading defaults.
Docs
Documentation-oriented emphasis for headings, tables, and code.
Links
Link-forward emphasis for navigation-heavy pages.
Research
Research emphasis for quotes, references, and diagnostics.
Compact
Dense presentation for small terminals.
Verbose
More explicit visual cues for structure and status.
Implementations§
Trait Implementations§
Source§impl Clone for ReaderProfile
impl Clone for ReaderProfile
Source§fn clone(&self) -> ReaderProfile
fn clone(&self) -> ReaderProfile
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 ReaderProfile
impl Debug for ReaderProfile
Source§impl Default for ReaderProfile
impl Default for ReaderProfile
Source§fn default() -> ReaderProfile
fn default() -> ReaderProfile
Returns the “default value” for a type. Read more
Source§impl Display for ReaderProfile
impl Display for ReaderProfile
Source§impl PartialEq for ReaderProfile
impl PartialEq for ReaderProfile
Source§fn eq(&self, other: &ReaderProfile) -> bool
fn eq(&self, other: &ReaderProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReaderProfile
impl Eq for ReaderProfile
impl StructuralPartialEq for ReaderProfile
Auto Trait Implementations§
impl Freeze for ReaderProfile
impl RefUnwindSafe for ReaderProfile
impl Send for ReaderProfile
impl Sync for ReaderProfile
impl Unpin for ReaderProfile
impl UnsafeUnpin for ReaderProfile
impl UnwindSafe for ReaderProfile
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