use String;
use ;
/// Represents a `STOPSIGNAL` instruction.
/// ```rust
/// use nanite_docker::{StopSignal, Instruction};
///
/// let stop_signal = StopSignal::ByName("SIGTERM".into());
/// let stop_signal_built = format!("{stop_signal}");
/// assert_eq!(stop_signal_built, r#"STOPSIGNAL SIGTERM"#);
///
/// let stop_signal = StopSignal::ById(15);
/// let stop_signal_built = format!("{stop_signal}");
/// assert_eq!(stop_signal_built, r#"STOPSIGNAL 15"#);
/// ```