use ;
/// See https://docs.docker.com/engine/api/v1.41/#tag/Container/operation/ContainerCreate
///
/// # Example - port only
///
/// ```rust
/// use passivized_docker_engine_client::requests::HostConfig;
///
/// let host_config = HostConfig::default()
/// .bind_port("80", "8080");
/// ```
///
/// # Example - port and ip
///
/// ```rust
/// use std::net::Ipv4Addr;
/// use passivized_docker_engine_client::requests::HostConfig;
///
/// let host_config = HostConfig::default()
/// .bind_ip("80", Ipv4Addr::new(127, 0, 0, 4), "8080");
/// ```
///