pub struct Attended<K> {
pub shell: Arc<Shell>,
pub kept: K,
pub parted: Option<Micros>,
}Expand description
One shell, what its reaction left behind, and when it went.
Fields§
§shell: Arc<Shell>§kept: K§parted: Option<Micros>When nobody could write on its pipe any more. None for a shell the
session outlived — still running when the watch fired.
Trait Implementations§
Auto Trait Implementations§
impl<K> Freeze for Attended<K>where
K: Freeze,
impl<K> RefUnwindSafe for Attended<K>where
K: RefUnwindSafe,
impl<K> Send for Attended<K>where
K: Send,
impl<K> Sync for Attended<K>where
K: Sync,
impl<K> Unpin for Attended<K>where
K: Unpin,
impl<K> UnsafeUnpin for Attended<K>where
K: UnsafeUnpin,
impl<K> UnwindSafe for Attended<K>where
K: UnwindSafe,
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