scopeinput

Macro scopeinput 

Source
macro_rules! scopeinput {
    ($prefix:expr, $($arg:tt)*) => { ... };
}
Expand description

Outputs an input log message with the ‘⌨️’ prefix and the specified scope to stderr without a linebreak

§Examples

use hand::*;

scopeinput!("Authentication", "Password: "); // [Authentication] ⌨️ Password:
scopesuccessln!("Authentication", "Successfully logged in"); // [Authentication] ✅ Successfully logged in