usethiserror::Error;/// Errors that can occur during API format translation.
#[derive(Error, Debug, Clone)]pubenumTranslateError{/// The model name did not match any entry in the translation config.
#[error("unknown model: {0}")]
UnknownModel(String),/// A translation step failed (validation, unsupported feature with strict config, etc.).
#[error("translation error: {0}")]
Translation(String),/// A required field was missing from the input.
#[error("missing field: {0}")]
MissingField(String),}