Enum docker_api::api::image::data::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>,
},
}
Expand description
Represents a response chunk from Docker api when building, pulling or importing an image.
Variants
Fields of Update
stream: String
Fields of Error
error: String
error_detail: ErrorDetail
Fields of Digest
aux: Aux
Fields of PullStatus
Trait Implementations
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
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more