Enum shiplift::image::ImageBuildChunk[][src]

pub enum ImageBuildChunk {
    Update {
        stream: String,
    },
    Error {
        error: String,
        error_detail: ErrorDetail,
    },
    Digest {
        aux: Aux,
    },
    PullStatus {
        status: String,
        id: Option<String>,
        progress: Option<String>,
        progress_detail: Option<ProgressDetail>,
    },
}

Represents a response chunk from Docker api when building, pulling or importing an image.

Variants

Update
Show fields

Fields of Update

stream: String
Error
Show fields

Fields of Error

error: Stringerror_detail: ErrorDetail
Digest
Show fields

Fields of Digest

aux: Aux
PullStatus
Show fields

Fields of PullStatus

status: Stringid: Option<String>progress: Option<String>progress_detail: Option<ProgressDetail>

Trait Implementations

impl Debug for ImageBuildChunk[src]

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

impl Serialize for ImageBuildChunk[src]

Auto Trait Implementations

impl RefUnwindSafe for ImageBuildChunk

impl Send for ImageBuildChunk

impl Sync for ImageBuildChunk

impl Unpin for ImageBuildChunk

impl UnwindSafe for ImageBuildChunk

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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