pub enum StdinEvent {
Ready,
Resize,
Shutdown,
}Expand description
Events returned by StdinRelay::wait().
Variants§
Ready
stdin has data available to read.
Resize
Terminal was resized (SIGWINCH).
Shutdown
Shutdown was signaled by the other thread.
Auto Trait Implementations§
impl Freeze for StdinEvent
impl RefUnwindSafe for StdinEvent
impl Send for StdinEvent
impl Sync for StdinEvent
impl Unpin for StdinEvent
impl UnsafeUnpin for StdinEvent
impl UnwindSafe for StdinEvent
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