usecrate::{common::traits::private::Sealed,v0::expr::ExprTree};/// Contents of a [raw formula file](https://github.com/jiricekcz/fef-specification/blob/main/file_content_types/Raw%20Formula.md)
////// Expression is represented as an expression tree using the [`ExprTree`] type.
#[derive(Debug, Clone, PartialEq)]pubstructRawFormulaFile{pub(crate)expression: ExprTree,
}implRawFormulaFile{/// Root of the expression tree
pubfnroot_expression(&self)->&ExprTree{&self.expression
}/// Decompose the file into the [`ExprTree`] root
pubfninto_root_expression(self)-> ExprTree{self.expression
}}implSealed forRawFormulaFile{}implInto<ExprTree>forRawFormulaFile{fninto(self)-> ExprTree{self.expression
}}