pub type Result<T> = Result<T, Error>;
Expand description
A specialized Result type for frontmatter operations.
This type alias provides a consistent error type throughout the crate and simplifies error handling for library users.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}