pub type PromptResult<T> = Result<T, PromptError>;Available on crate feature
prompt only.Expand description
Result of a prompt helper.
Aliased Type§
pub enum PromptResult<T> {
Ok(T),
Err(PromptError),
}pub type PromptResult<T> = Result<T, PromptError>;prompt only.Result of a prompt helper.
pub enum PromptResult<T> {
Ok(T),
Err(PromptError),
}