pub struct CommandResult {
pub exit_code: ExitCode,
pub envelope: CommandEnvelope,
pub stdout_policy: StreamPolicy,
pub stderr_policy: StreamPolicy,
}Expand description
Standard mounted-app command result.
Fields§
§exit_code: ExitCode§envelope: CommandEnvelope§stdout_policy: StreamPolicy§stderr_policy: StreamPolicyImplementations§
Source§impl CommandResult
impl CommandResult
Sourcepub fn success(envelope: OutputEnvelopeV1) -> Self
pub fn success(envelope: OutputEnvelopeV1) -> Self
Construct a successful command result.
Sourcepub fn failure(exit_code: ExitCode, envelope: ErrorEnvelopeV1) -> Self
pub fn failure(exit_code: ExitCode, envelope: ErrorEnvelopeV1) -> Self
Construct a failed command result.
pub fn stdout_policy(self, value: StreamPolicy) -> Self
pub fn stderr_policy(self, value: StreamPolicy) -> Self
Sourcepub fn render(
&self,
cfg: SdkRenderConfig,
) -> Result<RenderedCommandResult, String>
pub fn render( &self, cfg: SdkRenderConfig, ) -> Result<RenderedCommandResult, String>
Render the command result according to the requested output configuration.
Trait Implementations§
Source§impl Clone for CommandResult
impl Clone for CommandResult
Source§fn clone(&self) -> CommandResult
fn clone(&self) -> CommandResult
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 CommandResult
impl Debug for CommandResult
Source§impl<'de> Deserialize<'de> for CommandResult
impl<'de> Deserialize<'de> for CommandResult
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 JsonSchema for CommandResult
impl JsonSchema for CommandResult
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for CommandResult
impl PartialEq for CommandResult
Source§impl Serialize for CommandResult
impl Serialize for CommandResult
impl StructuralPartialEq for CommandResult
Auto Trait Implementations§
impl Freeze for CommandResult
impl RefUnwindSafe for CommandResult
impl Send for CommandResult
impl Sync for CommandResult
impl Unpin for CommandResult
impl UnsafeUnpin for CommandResult
impl UnwindSafe for CommandResult
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