pub(crate) struct RawExpression {
text: String,
}Expand description
Placeholder for a future expression implementation. Holds the raw text of the parsed expression. The inner field is private — this type will be replaced with a proper expression AST in the future.
Fields§
§text: StringImplementations§
Trait Implementations§
Source§impl Clone for RawExpression
impl Clone for RawExpression
Source§fn clone(&self) -> RawExpression
fn clone(&self) -> RawExpression
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RawExpression
impl Debug for RawExpression
Auto Trait Implementations§
impl Freeze for RawExpression
impl RefUnwindSafe for RawExpression
impl Send for RawExpression
impl Sync for RawExpression
impl Unpin for RawExpression
impl UnwindSafe for RawExpression
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more