Trait cfg_expr::expr::Logic

source ·
pub trait Logic {
    // Required methods
    fn top() -> Self;
    fn bottom() -> Self;
    fn and(self, other: Self) -> Self;
    fn or(self, other: Self) -> Self;
    fn not(self) -> Self;
}
Expand description

A propositional logic used to evaluate Expression instances.

An Expression consists of some predicates and the any, all and not operators. An implementation of Logic defines how the any, all and not operators should be evaluated.

Required Methods§

source

fn top() -> Self

The result of an all operation with no operands, akin to Boolean true.

source

fn bottom() -> Self

The result of an any operation with no operands, akin to Boolean false.

source

fn and(self, other: Self) -> Self

AND, which corresponds to the all operator.

source

fn or(self, other: Self) -> Self

OR, which corresponds to the any operator.

source

fn not(self) -> Self

NOT, which corresponds to the not operator.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Logic for Option<bool>

A three-valued logic – None stands for the value being unknown.

The truth tables for this logic are described on Wikipedia.

source§

fn top() -> Self

source§

fn bottom() -> Self

source§

fn and(self, other: Self) -> Self

source§

fn or(self, other: Self) -> Self

source§

fn not(self) -> Self

source§

impl Logic for bool

A boolean logic.

source§

fn top() -> Self

source§

fn bottom() -> Self

source§

fn and(self, other: Self) -> Self

source§

fn or(self, other: Self) -> Self

source§

fn not(self) -> Self

Implementors§