pub struct WindowRecord {
pub id: WindowId,
pub index: i32,
pub name: String,
pub active: bool,
pub panes: BTreeMap<PaneId, PaneRecord>,
pub alerts: AlertState,
pub has_unseen: bool,
pub current_path: Option<PathBuf>,
pub active_command: Option<String>,
}Fields§
§id: WindowId§index: i32§name: String§active: bool§panes: BTreeMap<PaneId, PaneRecord>§alerts: AlertState§has_unseen: bool§current_path: Option<PathBuf>§active_command: Option<String>Trait Implementations§
Source§impl Clone for WindowRecord
impl Clone for WindowRecord
Source§fn clone(&self) -> WindowRecord
fn clone(&self) -> WindowRecord
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 WindowRecord
impl Debug for WindowRecord
Source§impl PartialEq for WindowRecord
impl PartialEq for WindowRecord
impl Eq for WindowRecord
impl StructuralPartialEq for WindowRecord
Auto Trait Implementations§
impl Freeze for WindowRecord
impl RefUnwindSafe for WindowRecord
impl Send for WindowRecord
impl Sync for WindowRecord
impl Unpin for WindowRecord
impl UnsafeUnpin for WindowRecord
impl UnwindSafe for WindowRecord
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