pub enum MetadataError {
ExtractionError {
message: String,
},
ProcessingError {
message: String,
},
MissingFieldError(String),
DateParseError(String),
IoError(Error),
YamlError(Error),
JsonError(Error),
TomlError(Error),
UnsupportedFormatError(String),
ValidationError {
field: String,
message: String,
},
Utf8Error(Utf8Error),
Other(Box<dyn Error + Send + Sync>),
}
Expand description
Custom error types for the metadata-gen library.
This enum encompasses all possible errors that can occur during metadata extraction, processing, and related operations.
Variants§
ExtractionError
Error occurred while extracting metadata.
ProcessingError
Error occurred while processing metadata.
MissingFieldError(String)
Error occurred due to missing required field.
DateParseError(String)
Error occurred while parsing date.
IoError(Error)
I/O error.
YamlError(Error)
YAML parsing error.
JsonError(Error)
JSON parsing error.
TomlError(Error)
TOML parsing error.
UnsupportedFormatError(String)
Unsupported metadata format error.
ValidationError
Validation error for metadata fields.
Fields
Utf8Error(Utf8Error)
UTF-8 decoding error.
Other(Box<dyn Error + Send + Sync>)
Catch-all for unexpected errors.
Implementations§
Source§impl MetadataError
impl MetadataError
Sourcepub fn new_extraction_error(message: impl Into<String>) -> Self
pub fn new_extraction_error(message: impl Into<String>) -> Self
Creates a new ExtractionError
with the given message.
§Arguments
message
- A descriptive message about the extraction error.
§Returns
A new MetadataError::ExtractionError
variant.
§Example
use metadata_gen::error::MetadataError;
let error = MetadataError::new_extraction_error("Failed to extract title");
assert!(matches!(error, MetadataError::ExtractionError { .. }));
Sourcepub fn new_processing_error(message: impl Into<String>) -> Self
pub fn new_processing_error(message: impl Into<String>) -> Self
Creates a new ProcessingError
with the given message.
§Arguments
message
- A descriptive message about the processing error.
§Returns
A new MetadataError::ProcessingError
variant.
§Example
use metadata_gen::error::MetadataError;
let error = MetadataError::new_processing_error("Failed to process metadata");
assert!(matches!(error, MetadataError::ProcessingError { .. }));
Sourcepub fn new_validation_error(
field: impl Into<String>,
message: impl Into<String>,
) -> Self
pub fn new_validation_error( field: impl Into<String>, message: impl Into<String>, ) -> Self
Creates a new ValidationError
with the given field and message.
§Arguments
field
- The name of the field that failed validation.message
- A descriptive message about the validation error.
§Returns
A new MetadataError::ValidationError
variant.
§Example
use metadata_gen::error::MetadataError;
let error = MetadataError::new_validation_error("title", "Title must not be empty");
assert!(matches!(error, MetadataError::ValidationError { .. }));
Sourcepub fn context<C>(self, ctx: C) -> Self
pub fn context<C>(self, ctx: C) -> Self
Adds context to an existing error.
This method wraps the current error with additional context information.
§Arguments
ctx
- The context to add to the error.
§Returns
A new MetadataError
with the added context.
§Example
use metadata_gen::error::MetadataError;
let error = MetadataError::new_extraction_error("Failed to parse YAML")
.context("Processing file 'example.md'");
assert_eq!(error.to_string(), "Failed to extract metadata: Processing file 'example.md': Failed to parse YAML");