pub type Result<T> = Result<T, DockerError>;
结果类型
pub enum Result<T> { Ok(T), Err(DockerError), }
Contains the success value
Contains the error value