pub fn format_signals(
f: impl Write,
it: impl Iterator<Item = TrapSignal>,
) -> Result<(), Error>Expand description
Formats Iterator<Item = TrapSignal> to the provided writer.
ยงArguments
f- Any type that implementsstd::io::Write.it- An iterator over the signals that will be formatted into thef.