pub struct ContainerExecResponse {
pub exit_code: i32,
pub stdout: String,
pub stderr: String,
}Expand description
Exec response with command output
Fields§
§exit_code: i32Exit code from the command
stdout: StringStandard output
stderr: StringStandard error
Trait Implementations§
Source§impl ComposeSchema for ContainerExecResponse
impl ComposeSchema for ContainerExecResponse
Source§impl Debug for ContainerExecResponse
impl Debug for ContainerExecResponse
Source§impl<'de> Deserialize<'de> for ContainerExecResponse
impl<'de> Deserialize<'de> for ContainerExecResponse
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 Serialize for ContainerExecResponse
impl Serialize for ContainerExecResponse
Auto Trait Implementations§
impl Freeze for ContainerExecResponse
impl RefUnwindSafe for ContainerExecResponse
impl Send for ContainerExecResponse
impl Sync for ContainerExecResponse
impl Unpin for ContainerExecResponse
impl UnsafeUnpin for ContainerExecResponse
impl UnwindSafe for ContainerExecResponse
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