use String;
use ;
/// Represents a `LABEL` instruction
/// ```rust
/// use nanite_docker::{Label};
///
/// let label = Label {
/// key: "key".to_string(),
/// value: "value".to_string(),
/// };
/// let label_built = format!("{label}");
/// assert_eq!(label_built, "LABEL key=value");
/// ```