xlsx-handlebars 0.2.1

A Rust library for processing XLSX files with Handlebars templates, supporting WASM, Node.js, Deno, and browsers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 错误类型定义

use thiserror::Error;

/// XLSX 处理错误类型
#[derive(Error, Debug)]
pub enum XlsxError {
    #[error("Invalid Zip Format")]
    InvalidZipFormat,
    #[error("{0}")]
    TemplateRenderError(String),
}