Enum interactive_parse::error::SchemaError
source · pub enum SchemaError {
Generic(String),
Inquire(InquireError),
Serde {
value: Value,
serde_error: Error,
},
SchemaIsBool,
Unimplemented,
}
Variants§
Trait Implementations§
source§impl Debug for SchemaError
impl Debug for SchemaError
source§impl Display for SchemaError
impl Display for SchemaError
source§impl Error for SchemaError
impl Error for SchemaError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<InquireError> for SchemaError
impl From<InquireError> for SchemaError
source§fn from(source: InquireError) -> Self
fn from(source: InquireError) -> Self
Converts to this type from the input type.