pub struct WindowPlan {
pub name: String,
pub cwd: PathBuf,
pub pre_command: Option<String>,
pub command: Option<String>,
pub layout: Option<String>,
pub synchronize: bool,
pub panes: Vec<PanePlan>,
}Fields§
§name: String§cwd: PathBuf§pre_command: Option<String>§command: Option<String>§layout: Option<String>§synchronize: bool§panes: Vec<PanePlan>Trait Implementations§
Source§impl Clone for WindowPlan
impl Clone for WindowPlan
Source§fn clone(&self) -> WindowPlan
fn clone(&self) -> WindowPlan
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 WindowPlan
impl Debug for WindowPlan
Source§impl PartialEq for WindowPlan
impl PartialEq for WindowPlan
impl Eq for WindowPlan
impl StructuralPartialEq for WindowPlan
Auto Trait Implementations§
impl Freeze for WindowPlan
impl RefUnwindSafe for WindowPlan
impl Send for WindowPlan
impl Sync for WindowPlan
impl Unpin for WindowPlan
impl UnsafeUnpin for WindowPlan
impl UnwindSafe for WindowPlan
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