docker_client 0.1.0-alpha4

docker-client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//!
//! Container module.
//!

pub mod config;
pub mod remove;
pub mod kill;
pub mod health_check;
pub mod info;
mod fs_changes;
mod wait;

pub use health_check::HealthCheck;
pub use config::{CreatedContainer, ConfigBuilder, Config};
pub use remove::{RemoverBuilder, Remover};
pub use kill::{KillerBuilder, Killer};
pub use fs_changes::FSChanges;
pub use wait::{WaitCondition, WaitStatus};