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 Clone for HyprlandData
impl Clone for HyprlandData
Source§fn clone(&self) -> HyprlandData
fn clone(&self) -> HyprlandData
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 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 UnsafeUnpin 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