openpql-pql-parser 0.1.5

A parser implementation for Poker Query Language (PQL)
Documentation
1
2
3
4
5
6
/// Unary operator in an expression.
#[derive(Debug, Clone, Copy, Eq, PartialEq, derive_more::From)]
pub enum UnaryOp {
    /// Logical negation `not`.
    Not,
}