#[repr(C)]pub struct aws_run_command_result {
pub ret_code: c_int,
pub std_out: *mut aws_string,
pub std_err: *mut aws_string,
}
Fields
ret_code: c_int
std_out: *mut aws_string
captured stdout message from running the command, caller is responsible for releasing the memory.
std_err: *mut aws_string
captured stderr message from running the command, caller is responsible for releasing the memory. It’s currently not implemented and the value will be set to NULL.
Trait Implementations
sourceimpl Clone for aws_run_command_result
impl Clone for aws_run_command_result
sourcefn clone(&self) -> aws_run_command_result
fn clone(&self) -> aws_run_command_result
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_run_command_result
impl Debug for aws_run_command_result
sourceimpl Default for aws_run_command_result
impl Default for aws_run_command_result
sourceimpl PartialEq<aws_run_command_result> for aws_run_command_result
impl PartialEq<aws_run_command_result> for aws_run_command_result
sourcefn eq(&self, other: &aws_run_command_result) -> bool
fn eq(&self, other: &aws_run_command_result) -> bool
impl Copy for aws_run_command_result
impl Eq for aws_run_command_result
impl StructuralEq for aws_run_command_result
impl StructuralPartialEq for aws_run_command_result
Auto Trait Implementations
impl RefUnwindSafe for aws_run_command_result
impl !Send for aws_run_command_result
impl !Sync for aws_run_command_result
impl Unpin for aws_run_command_result
impl UnwindSafe for aws_run_command_result
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more