pub enum SessionSidebarMode {
Links,
Outline,
Forms,
Regions,
Search,
Logs,
}Expand description
Persisted sidebar mode preference for a browsing session.
Variants§
Links
Sidebar lists page links.
Outline
Sidebar lists headings and page regions.
Forms
Sidebar lists forms and actions.
Regions
Sidebar lists semantic page regions.
Search
Sidebar lists the latest search results.
Logs
Sidebar lists local redacted response logs.
Implementations§
Trait Implementations§
Source§impl Clone for SessionSidebarMode
impl Clone for SessionSidebarMode
Source§fn clone(&self) -> SessionSidebarMode
fn clone(&self) -> SessionSidebarMode
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 SessionSidebarMode
impl Debug for SessionSidebarMode
Source§impl Default for SessionSidebarMode
impl Default for SessionSidebarMode
Source§fn default() -> SessionSidebarMode
fn default() -> SessionSidebarMode
Returns the “default value” for a type. Read more
Source§impl Display for SessionSidebarMode
impl Display for SessionSidebarMode
Source§impl PartialEq for SessionSidebarMode
impl PartialEq for SessionSidebarMode
Source§fn eq(&self, other: &SessionSidebarMode) -> bool
fn eq(&self, other: &SessionSidebarMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SessionSidebarMode
impl Eq for SessionSidebarMode
impl StructuralPartialEq for SessionSidebarMode
Auto Trait Implementations§
impl Freeze for SessionSidebarMode
impl RefUnwindSafe for SessionSidebarMode
impl Send for SessionSidebarMode
impl Sync for SessionSidebarMode
impl Unpin for SessionSidebarMode
impl UnsafeUnpin for SessionSidebarMode
impl UnwindSafe for SessionSidebarMode
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