[][src]Struct qapi_qga::GuestExecStatus

pub struct GuestExecStatus {
    pub out_data: Option<Vec<u8>>,
    pub err_truncated: Option<bool>,
    pub signal: Option<isize>,
    pub exited: bool,
    pub exitcode: Option<isize>,
    pub out_truncated: Option<bool>,
    pub err_data: Option<Vec<u8>>,
}

Fields

out_data: Option<Vec<u8>>err_truncated: Option<bool>signal: Option<isize>exited: boolexitcode: Option<isize>out_truncated: Option<bool>err_data: Option<Vec<u8>>

Implementations

impl GuestExecStatus[src]

pub fn result(self) -> Result<Self, Self>[src]

Trait Implementations

impl Clone for GuestExecStatus[src]

impl Debug for GuestExecStatus[src]

impl<'de> Deserialize<'de> for GuestExecStatus[src]

impl Display for GuestExecStatus[src]

impl Error for GuestExecStatus[src]

impl From<GuestExecStatus> for Error[src]

impl Serialize for GuestExecStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.