pub struct ManagerState {
pub window_title: Option<String>,
pub desktop_names: Vec<String>,
pub viewports: Vec<Viewport>,
pub active_desktop: Vec<String>,
pub working_tags: Vec<String>,
pub urgent_tags: Vec<String>,
}
Fields§
§window_title: Option<String>
§desktop_names: Vec<String>
§viewports: Vec<Viewport>
§active_desktop: Vec<String>
Trait Implementations§
Source§impl Clone for ManagerState
impl Clone for ManagerState
Source§fn clone(&self) -> ManagerState
fn clone(&self) -> ManagerState
Returns a copy of the value. Read more
1.0.0 · 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 ManagerState
impl Debug for ManagerState
Source§impl<'de> Deserialize<'de> for ManagerState
impl<'de> Deserialize<'de> for ManagerState
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
Source§impl From<ManagerState> for DisplayState
impl From<ManagerState> for DisplayState
Source§fn from(m: ManagerState) -> Self
fn from(m: ManagerState) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ManagerState
impl RefUnwindSafe for ManagerState
impl Send for ManagerState
impl Sync for ManagerState
impl Unpin for ManagerState
impl UnwindSafe for ManagerState
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