pub struct GateCommandOutput {
pub succeeded: bool,
pub stdout: String,
pub stderr: String,
}Expand description
Captured result of one canonical benchmark command.
Fields§
§succeeded: boolWhether the command exited successfully.
stdout: StringCaptured standard output.
stderr: StringCaptured standard error.
Implementations§
Trait Implementations§
Source§impl Clone for GateCommandOutput
impl Clone for GateCommandOutput
Source§fn clone(&self) -> GateCommandOutput
fn clone(&self) -> GateCommandOutput
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 GateCommandOutput
impl Debug for GateCommandOutput
impl Eq for GateCommandOutput
Source§impl PartialEq for GateCommandOutput
impl PartialEq for GateCommandOutput
impl StructuralPartialEq for GateCommandOutput
Auto Trait Implementations§
impl Freeze for GateCommandOutput
impl RefUnwindSafe for GateCommandOutput
impl Send for GateCommandOutput
impl Sync for GateCommandOutput
impl Unpin for GateCommandOutput
impl UnsafeUnpin for GateCommandOutput
impl UnwindSafe for GateCommandOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.