pub struct PaneRecord {
pub id: PaneId,
pub index: i32,
pub title: Option<String>,
pub current_path: Option<PathBuf>,
pub current_command: Option<String>,
pub is_active: bool,
}Fields§
§id: PaneId§index: i32§title: Option<String>§current_path: Option<PathBuf>§current_command: Option<String>§is_active: boolTrait Implementations§
Source§impl Clone for PaneRecord
impl Clone for PaneRecord
Source§fn clone(&self) -> PaneRecord
fn clone(&self) -> PaneRecord
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 PaneRecord
impl Debug for PaneRecord
Source§impl PartialEq for PaneRecord
impl PartialEq for PaneRecord
impl Eq for PaneRecord
impl StructuralPartialEq for PaneRecord
Auto Trait Implementations§
impl Freeze for PaneRecord
impl RefUnwindSafe for PaneRecord
impl Send for PaneRecord
impl Sync for PaneRecord
impl Unpin for PaneRecord
impl UnsafeUnpin for PaneRecord
impl UnwindSafe for PaneRecord
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