pub struct Workspace {
pub number: Option<u32>,
pub name: Option<String>,
pub num_trees: u32,
pub rectangle: Rectangle,
/* private fields */
}Fields§
§number: Option<u32>The workspace number (if set).
name: Option<String>The workspace name (if set).
num_trees: u32The number of container trees in this workspace.
rectangle: RectangleThe current area of the workspace.
Implementations§
Source§impl Workspace
impl Workspace
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnsafeUnpin for Workspace
impl UnwindSafe for Workspace
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