pub struct RestoreRunnerCommandOutput {
pub success: bool,
pub status: String,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}Expand description
RestoreRunnerCommandOutput
Process-like command output returned by a restore runner executor. Owned by restore runner execution and converted into durable receipts.
Fields§
§success: bool§status: String§stdout: Vec<u8>§stderr: Vec<u8>Trait Implementations§
Source§impl Clone for RestoreRunnerCommandOutput
impl Clone for RestoreRunnerCommandOutput
Source§impl Debug for RestoreRunnerCommandOutput
impl Debug for RestoreRunnerCommandOutput
impl Eq for RestoreRunnerCommandOutput
impl StructuralPartialEq for RestoreRunnerCommandOutput
Auto Trait Implementations§
impl Freeze for RestoreRunnerCommandOutput
impl RefUnwindSafe for RestoreRunnerCommandOutput
impl Send for RestoreRunnerCommandOutput
impl Sync for RestoreRunnerCommandOutput
impl Unpin for RestoreRunnerCommandOutput
impl UnsafeUnpin for RestoreRunnerCommandOutput
impl UnwindSafe for RestoreRunnerCommandOutput
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