pub enum Ran {
Status(ExitStatus),
TimedOut(u64),
}Expand description
What became of a command run under the deadline.
Variants§
Status(ExitStatus)
TimedOut(u64)
Killed at the deadline; carries the budget it exceeded, in seconds.
Auto Trait Implementations§
impl Freeze for Ran
impl RefUnwindSafe for Ran
impl Send for Ran
impl Sync for Ran
impl Unpin for Ran
impl UnsafeUnpin for Ran
impl UnwindSafe for Ran
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