//! Terminal bell notification.
//!//! Simple BEL character output for audio notification.
usestd::io::{self, Write};/// Terminal bell notification
pubstructTerminalBell;implTerminalBell{/// Ring the terminal bell (BEL character \x07)
pubfnring()->io::Result<()>{io::stdout().write_all(b"\x07")?;io::stdout().flush()}}