pub struct DockArea {
pub top: i32,
pub top_start_x: i32,
pub top_end_x: i32,
pub bottom: i32,
pub bottom_start_x: i32,
pub bottom_end_x: i32,
pub right: i32,
pub right_start_y: i32,
pub right_end_y: i32,
pub left: i32,
pub left_start_y: i32,
pub left_end_y: i32,
}
Fields§
§top: i32
§top_start_x: i32
§top_end_x: i32
§bottom: i32
§bottom_start_x: i32
§bottom_end_x: i32
§right: i32
§right_start_y: i32
§right_end_y: i32
§left: i32
§left_start_y: i32
§left_end_y: i32
Implementations§
Trait Implementations§
impl Copy for DockArea
Auto Trait Implementations§
impl Freeze for DockArea
impl RefUnwindSafe for DockArea
impl Send for DockArea
impl Sync for DockArea
impl Unpin for DockArea
impl UnwindSafe for DockArea
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