currently, `Password` input is just empty. Maybe users would like to customize mask character? ```rust let password = Password::new() .with_prompt("Enter password") .with_mask('*') // if not used, default to empty input .interact()?; ```