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