pub struct PanelRect {
pub x: f32,
pub y: f32,
pub width: f32,
pub height: f32,
pub visible: bool,
pub collapsed: bool,
}Expand description
Which editor panels are currently visible and their pixel bounds.
Fields§
§x: f32§y: f32§width: f32§height: f32§visible: bool§collapsed: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PanelRect
impl RefUnwindSafe for PanelRect
impl Send for PanelRect
impl Sync for PanelRect
impl Unpin for PanelRect
impl UnsafeUnpin for PanelRect
impl UnwindSafe for PanelRect
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