Function read_string_no_msg

Source
pub fn read_string_no_msg() -> String
Expand description

§DESCRIPTION

Prompts the user to type a string of text which will then be returned. Useful for prototyping and quick tests.

§RETURNS

A trimmed String value provided by the user.

§EXAMPLES

use quick_input::read_string_no_msg;

let user_str: String = read_string_no_msg();