pub struct RestoreRunnerCommandOutput {
pub success: bool,
pub status: String,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}Expand description
RestoreRunnerCommandOutput
Fields§
§success: bool§status: String§stdout: Vec<u8>§stderr: Vec<u8>Trait Implementations§
Source§impl Clone for RestoreRunnerCommandOutput
impl Clone for RestoreRunnerCommandOutput
Source§fn clone(&self) -> RestoreRunnerCommandOutput
fn clone(&self) -> RestoreRunnerCommandOutput
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 moreSource§impl Debug for RestoreRunnerCommandOutput
impl Debug for RestoreRunnerCommandOutput
Source§impl PartialEq for RestoreRunnerCommandOutput
impl PartialEq for RestoreRunnerCommandOutput
Source§fn eq(&self, other: &RestoreRunnerCommandOutput) -> bool
fn eq(&self, other: &RestoreRunnerCommandOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.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