use String;
use ;
/// Represents an `ENV` instruction.
/// ```rust
/// use nanite_docker::Env;
///
/// let env = Env {
/// key: "key".to_string(),
/// value: "value".to_string(),
/// };
/// let env_built = format!("{env}");
/// assert_eq!(env_built, "ENV key=value");
/// ```