Expand description
Modified from https://github.com/wez/wezterm/tree/main/pty
Structs§
- Exit
Status - Represents the exit status of a child process.
- PtyFd
- PtyPair
- PtySize
- Represents the size of the visible display area in the pty
- Unix
Master Pty - Represents the master end of a pty. The file descriptor will be closed when the Pty is dropped.
- Unix
PtySystem - Unix
Slave Pty - Represents the slave end of a pty. The file descriptor will be closed when the Pty is dropped.
Traits§
- Child
- Represents a child process spawned into the pty. This handle can be used to wait for or terminate that child process.
- Child
Killer - Represents the ability to signal a Child to terminate
- Master
Pty - Represents the master/control end of the pty
- PtySystem
- The
PtySystemtrait allows an application to work with multiple possible Pty implementations at runtime. This is important on Windows systems which have a variety of implementations.