// SPDX-FileCopyrightText: 2025 Slatian
//// SPDX-License-Identifier: LGPL-3.0-only
/// A way to describe how nultiple elements are joined together
/// in a chain of multiple.
#[derive(Debug, Clone, PartialEq, Eq)]pubenumBooleanJoiner{/// Values are joined through a boolean or
Or,/// Values are joined through a boolean and
And,}implToString forBooleanJoiner{fnto_string(&self)-> String{matchself{Self::Or =>"or",Self::And =>"and",}.to_string()}}