pub struct HyprlandData {
pub clients: Vec<(ClientId, ClientData)>,
pub workspaces: Vec<(WorkspaceId, WorkspaceData)>,
pub monitors: Vec<(MonitorId, MonitorData)>,
}
Fields§
§clients: Vec<(ClientId, ClientData)>
§workspaces: Vec<(WorkspaceId, WorkspaceData)>
§monitors: Vec<(MonitorId, MonitorData)>
Trait Implementations§
Source§impl Debug for HyprlandData
impl Debug for HyprlandData
Source§impl Default for HyprlandData
impl Default for HyprlandData
Source§fn default() -> HyprlandData
fn default() -> HyprlandData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HyprlandData
impl RefUnwindSafe for HyprlandData
impl Send for HyprlandData
impl Sync for HyprlandData
impl Unpin for HyprlandData
impl UnwindSafe for HyprlandData
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