filter-expr 0.1.18

A library for parsing the filter expression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("transform the expression: {0}")]
    Transform(Box<dyn std::error::Error + Send + Sync>),

    #[error("parse the expression: {0}")]
    Parse(String),

    #[error("unsupported character: {0}")]
    UnsupportedCharacter(char),
}