pub struct PaneLayout {
pub pane_id: PaneId,
pub x: u16,
pub y: u16,
pub width: u16,
pub height: u16,
pub is_active: bool,
pub is_zoomed: bool,
}Expand description
Position and size of a pane in the terminal grid.
Fields§
§pane_id: PaneId§x: u16§y: u16§width: u16§height: u16§is_active: bool§is_zoomed: boolTrait Implementations§
Source§impl Clone for PaneLayout
impl Clone for PaneLayout
Source§fn clone(&self) -> PaneLayout
fn clone(&self) -> PaneLayout
Returns a duplicate of the value. Read more
1.0.0 · 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 PaneLayout
impl Debug for PaneLayout
Source§impl<'de> Deserialize<'de> for PaneLayout
impl<'de> Deserialize<'de> for PaneLayout
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PaneLayout
impl PartialEq for PaneLayout
Source§impl Serialize for PaneLayout
impl Serialize for PaneLayout
impl StructuralPartialEq for PaneLayout
Auto Trait Implementations§
impl Freeze for PaneLayout
impl RefUnwindSafe for PaneLayout
impl Send for PaneLayout
impl Sync for PaneLayout
impl Unpin for PaneLayout
impl UnsafeUnpin for PaneLayout
impl UnwindSafe for PaneLayout
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