pub struct ActionRunCommand {
pub command_line: Option<String>,
pub working_dir: Option<String>,
pub exit_code: Option<i32>,
pub combined_output: Option<String>,
}Expand description
antigravity.localharness.ActionRunCommand
Fields§
§command_line: Option<String>§working_dir: Option<String>§exit_code: Option<i32>§combined_output: Option<String>Trait Implementations§
Source§impl Clone for ActionRunCommand
impl Clone for ActionRunCommand
Source§fn clone(&self) -> ActionRunCommand
fn clone(&self) -> ActionRunCommand
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 ActionRunCommand
impl Debug for ActionRunCommand
Source§impl Default for ActionRunCommand
impl Default for ActionRunCommand
Source§fn default() -> ActionRunCommand
fn default() -> ActionRunCommand
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionRunCommand
impl<'de> Deserialize<'de> for ActionRunCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionRunCommand
impl PartialEq for ActionRunCommand
Source§impl Serialize for ActionRunCommand
impl Serialize for ActionRunCommand
impl StructuralPartialEq for ActionRunCommand
Auto Trait Implementations§
impl Freeze for ActionRunCommand
impl RefUnwindSafe for ActionRunCommand
impl Send for ActionRunCommand
impl Sync for ActionRunCommand
impl Unpin for ActionRunCommand
impl UnsafeUnpin for ActionRunCommand
impl UnwindSafe for ActionRunCommand
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