pub struct SpawnOpts {
pub cwd: String,
pub cols: u16,
pub rows: u16,
pub env: Vec<(String, String)>,
}Fields§
§cwd: String§cols: u16Desired terminal columns (passed as layout intent; actual pane size is managed by the terminal proxy anchor).
rows: u16Desired terminal rows (passed as layout intent; actual pane size is managed by the terminal proxy anchor).
env: Vec<(String, String)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpawnOpts
impl RefUnwindSafe for SpawnOpts
impl Send for SpawnOpts
impl Sync for SpawnOpts
impl Unpin for SpawnOpts
impl UnsafeUnpin for SpawnOpts
impl UnwindSafe for SpawnOpts
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