pub enum RunToEndResult {
InternalError(String),
RuntimeError(ProcessResource),
MemoryLimitExceeded(ProcessResource),
TimeLimitExceeded(ProcessResource),
OutputLimitExceeded(ProcessResource),
Ok(ProcessResource),
}
Variants§
InternalError(String)
RuntimeError(ProcessResource)
MemoryLimitExceeded(ProcessResource)
TimeLimitExceeded(ProcessResource)
OutputLimitExceeded(ProcessResource)
Ok(ProcessResource)
Implementations§
Trait Implementations§
Source§impl Debug for RunToEndResult
impl Debug for RunToEndResult
Source§impl Display for RunToEndResult
impl Display for RunToEndResult
Source§impl From<RunToEndResult> for AnsAndEvalResult
impl From<RunToEndResult> for AnsAndEvalResult
Source§fn from(i: RunToEndResult) -> Self
fn from(i: RunToEndResult) -> Self
Converts to this type from the input type.
Source§impl From<RunToEndResult> for OnlyRunResult
impl From<RunToEndResult> for OnlyRunResult
Source§fn from(i: RunToEndResult) -> Self
fn from(i: RunToEndResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RunToEndResult
impl RefUnwindSafe for RunToEndResult
impl Send for RunToEndResult
impl Sync for RunToEndResult
impl Unpin for RunToEndResult
impl UnwindSafe for RunToEndResult
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