pub struct Display {
pub top: Option<Vec<String>>,
pub bottom: Option<Vec<String>>,
}Expand description
The client-chrome layout: ordered item lists for the top (header) and
bottom (status bar) edges. None ⇒ the built-in default. Clients skip an
item they do not recognise instead of erroring, so a newer daemon can name
items an older client has never heard of. The vocabulary is
DISPLAY_ITEMS.
Fields§
§top: Option<Vec<String>>§bottom: Option<Vec<String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Display
impl<'de> Deserialize<'de> for Display
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Display
Auto Trait Implementations§
impl Freeze for Display
impl RefUnwindSafe for Display
impl Send for Display
impl Sync for Display
impl Unpin for Display
impl UnsafeUnpin for Display
impl UnwindSafe for Display
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