pub struct LeanRunOutput {
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
}Expand description
Raw process output from a Lean check.
Fields§
§exit_code: Option<i32>Exit code if process completed.
stdout: StringCaptured stdout.
stderr: StringCaptured stderr.
Trait Implementations§
Source§impl Clone for LeanRunOutput
impl Clone for LeanRunOutput
Source§fn clone(&self) -> LeanRunOutput
fn clone(&self) -> LeanRunOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LeanRunOutput
impl RefUnwindSafe for LeanRunOutput
impl Send for LeanRunOutput
impl Sync for LeanRunOutput
impl Unpin for LeanRunOutput
impl UnsafeUnpin for LeanRunOutput
impl UnwindSafe for LeanRunOutput
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