pub struct SandboxResponse {
pub action: String,
pub name: String,
pub path: String,
pub message: String,
pub output: Option<String>,
pub exit_code: Option<i32>,
}Fields§
§action: String§name: String§path: String§message: String§output: Option<String>§exit_code: Option<i32>Trait Implementations§
Source§impl CommandResponse for SandboxResponse
impl CommandResponse for SandboxResponse
Source§fn command_name(&self) -> &'static str
fn command_name(&self) -> &'static str
The command name for the response envelope
Source§fn human_readable(&self) -> String
fn human_readable(&self) -> String
Render as human-readable text
Source§fn to_json_output(&self) -> String
fn to_json_output(&self) -> String
Render as JSON (default implementation via serde). Read more
Source§fn to_json_output_pretty(&self) -> String
fn to_json_output_pretty(&self) -> String
Render as indented, human-readable JSON (opt-in via
--pretty).Source§impl Debug for SandboxResponse
impl Debug for SandboxResponse
Source§impl<'de> Deserialize<'de> for SandboxResponse
impl<'de> Deserialize<'de> for SandboxResponse
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
Auto Trait Implementations§
impl Freeze for SandboxResponse
impl RefUnwindSafe for SandboxResponse
impl Send for SandboxResponse
impl Sync for SandboxResponse
impl Unpin for SandboxResponse
impl UnsafeUnpin for SandboxResponse
impl UnwindSafe for SandboxResponse
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