IntentExtractionError

Type Alias IntentExtractionError 

Source
pub type IntentExtractionError = IntentError;
Expand description

Alias for IntentError for backward compatibility with macro-generated code.

Aliased Type§

pub enum IntentExtractionError {
    TagNotFound {
        tag: String,
    },
    ParseFailed {
        value: String,
    },
    Other(Error),
}

Variants§

§

TagNotFound

Fields

§

ParseFailed

Fields

§value: String
§

Other(Error)