pub struct RemoteOutput {
pub success: bool,
pub code: Option<i32>,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}
Fields§
§success: bool
§code: Option<i32>
§stdout: Vec<u8>
§stderr: Vec<u8>
Trait Implementations§
Source§impl Clone for RemoteOutput
impl Clone for RemoteOutput
Source§fn clone(&self) -> RemoteOutput
fn clone(&self) -> RemoteOutput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RemoteOutput
impl Debug for RemoteOutput
Source§impl PartialEq for RemoteOutput
impl PartialEq for RemoteOutput
impl Eq for RemoteOutput
impl StructuralPartialEq for RemoteOutput
Auto Trait Implementations§
impl Freeze for RemoteOutput
impl RefUnwindSafe for RemoteOutput
impl Send for RemoteOutput
impl Sync for RemoteOutput
impl Unpin for RemoteOutput
impl UnwindSafe for RemoteOutput
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