pub enum PtySignalEvent {
WindowChanged,
ChildStateChanged,
}Expand description
Signal types relevant to PTY operations.
Variants§
WindowChanged
Window size changed (SIGWINCH).
ChildStateChanged
Child process state changed (SIGCHLD).
Trait Implementations§
Source§impl Clone for PtySignalEvent
impl Clone for PtySignalEvent
Source§fn clone(&self) -> PtySignalEvent
fn clone(&self) -> PtySignalEvent
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 PtySignalEvent
impl Debug for PtySignalEvent
Source§impl PartialEq for PtySignalEvent
impl PartialEq for PtySignalEvent
impl Copy for PtySignalEvent
impl Eq for PtySignalEvent
impl StructuralPartialEq for PtySignalEvent
Auto Trait Implementations§
impl Freeze for PtySignalEvent
impl RefUnwindSafe for PtySignalEvent
impl Send for PtySignalEvent
impl Sync for PtySignalEvent
impl Unpin for PtySignalEvent
impl UnwindSafe for PtySignalEvent
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