promptly
1.0.0
مكتبة مطالبة بسيطة وذات رأي
تشمل الميزات:
ما عليك سوى الاتصال prompt
أو prompt_default
للمطالبة بأي نوع Promptable
:
prompt(msg)
- موجه حتى يمكن تحليل الإدخال كنوع الإرجاع المستنتج. إعادة المطالبة إذا كان الإدخال فارغًا.prompt_opt(msg)
- موجه حتى يمكن تحليل الإدخال كنوع الإرجاع المستنتج. لا يُرجع None
إذا كان الإدخال فارغًا.prompt_default(msg, default)
- موجه حتى يمكن تحليل الإدخال كنوع الإرجاع المستنتج. يستخدم القيمة default
إذا كان الإدخال فارغًا. use promptly :: { prompt , prompt_default , prompt_opt } ;
// Prompt until a non-empty string is provided
let name : String = prompt ( "Enter your name" ) ? ;
// Prompt for other `FromStr` types
let age : u32 = prompt ( "Enter your age" ) ? ;
// Prompt for optional paths with path completion. Returns `None` if empty input.
let photo : Option < PathBuf > = prompt_opt ( "Enter a path to a profile picture" ) ? ;
// Prompt Y/n with a default value when input is empty
let fallback = prompt_default ( "Would you like to receive marketing emails" , true ) ;
// Prompt for a url using the url crate (requires either 'nightly' or 'url' feature)
let website : Url = prompt ( "Enter a website URL" ) ;
سطح واجهة برمجة التطبيقات (API) لهذا الصندوق مبدئي وتجريبي، ولكنه مفتوح للأفكار الجديدة.