pub type GgufResult<T> = Result<T, GgufError>;
Result type for GGUF operations.
pub enum GgufResult<T> { Ok(T), Err(GgufError), }
Contains the success value
Contains the error value