pub struct Vtl2CommandResult {
pub stdout: String,
pub stderr: String,
pub stdout_raw: Vec<u8>,
pub stderr_raw: Vec<u8>,
pub exit_status: ExitStatus,
}Expand description
The result of running a VTL2 command.
Fields§
§stdout: StringThe stdout of the command.
stderr: StringThe stderr of the command.
stdout_raw: Vec<u8>The raw stdout of the command.
stderr_raw: Vec<u8>The raw stderr of the command.
exit_status: ExitStatusThe exit status of the command.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Vtl2CommandResult
impl RefUnwindSafe for Vtl2CommandResult
impl Send for Vtl2CommandResult
impl Sync for Vtl2CommandResult
impl Unpin for Vtl2CommandResult
impl UnwindSafe for Vtl2CommandResult
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