passivized_docker_engine_client 0.0.10-alpha

Docker Engine Client - manage and run containers, images, and volumes.
Documentation

pub(crate) struct LogsArgs {
    pub stdout: bool,
    pub stderr: bool,
    pub timestamps: bool
}

impl Default for LogsArgs {
    fn default() -> Self {
        Self {
            stdout: true,
            stderr: true,
            timestamps: Default::default()
        }
    }
}

impl LogsArgs {

    pub fn timestamps(mut self) -> Self {
        self.timestamps = true;
        self
    }

}