pub struct ProviderCommandOutput {
pub exit_code: Option<i32>,
pub stdout: String,
pub stderr: String,
pub truncated: bool,
}Expand description
Synchronous provider command result. The control plane may persist chunks.
Fields§
§exit_code: Option<i32>§stdout: String§stderr: String§truncated: boolTrait Implementations§
Source§impl Clone for ProviderCommandOutput
impl Clone for ProviderCommandOutput
Source§fn clone(&self) -> ProviderCommandOutput
fn clone(&self) -> ProviderCommandOutput
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 ProviderCommandOutput
impl Debug for ProviderCommandOutput
impl Eq for ProviderCommandOutput
Source§impl PartialEq for ProviderCommandOutput
impl PartialEq for ProviderCommandOutput
impl StructuralPartialEq for ProviderCommandOutput
Auto Trait Implementations§
impl Freeze for ProviderCommandOutput
impl RefUnwindSafe for ProviderCommandOutput
impl Send for ProviderCommandOutput
impl Sync for ProviderCommandOutput
impl Unpin for ProviderCommandOutput
impl UnsafeUnpin for ProviderCommandOutput
impl UnwindSafe for ProviderCommandOutput
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