pub struct RunResult {
pub id: Box<str>,
pub status: Box<str>,
pub passed: bool,
pub runtime: Option<Box<str>>,
pub memory: Option<Box<str>>,
pub passed_cases: Option<u32>,
pub total_cases: Option<u32>,
pub input: Option<Box<str>>,
pub output: Option<Box<str>>,
pub expected: Option<Box<str>>,
pub message: Option<Box<str>>,
}Fields§
§id: Box<str>§status: Box<str>§passed: bool§runtime: Option<Box<str>>§memory: Option<Box<str>>§passed_cases: Option<u32>§total_cases: Option<u32>§input: Option<Box<str>>§output: Option<Box<str>>§expected: Option<Box<str>>§message: Option<Box<str>>Trait Implementations§
impl Eq for RunResult
impl StructuralPartialEq for RunResult
Auto Trait Implementations§
impl Freeze for RunResult
impl RefUnwindSafe for RunResult
impl Send for RunResult
impl Sync for RunResult
impl Unpin for RunResult
impl UnsafeUnpin for RunResult
impl UnwindSafe for RunResult
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