pub struct Pane {
pub x_split: Option<u32>,
pub y_split: Option<u32>,
pub top_left_cell: Option<String>,
pub active_pane: Option<String>,
pub state: Option<String>,
}Expand description
Pane definition for split or frozen panes.
Fields§
§x_split: Option<u32>§y_split: Option<u32>§top_left_cell: Option<String>§active_pane: Option<String>§state: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pane
impl<'de> Deserialize<'de> for Pane
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
impl StructuralPartialEq for Pane
Auto Trait Implementations§
impl Freeze for Pane
impl RefUnwindSafe for Pane
impl Send for Pane
impl Sync for Pane
impl Unpin for Pane
impl UnwindSafe for Pane
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