pub struct NodeWithConstraint {
pub expression: Box<WithMetaData<NodeFullExpression>>,
}
Expand description
NodeWithConstraint represents a with constraint node in the AST It contains an expression
Fields§
§expression: Box<WithMetaData<NodeFullExpression>>
The expression of the with constraint
Trait Implementations§
Source§impl AstVisitor for NodeWithConstraint
impl AstVisitor for NodeWithConstraint
fn visit( &self, emitter: &mut dyn AstConverting, ) -> Result<TraversalResult, String>
Source§impl Clone for NodeWithConstraint
impl Clone for NodeWithConstraint
Source§fn clone(&self) -> NodeWithConstraint
fn clone(&self) -> NodeWithConstraint
Returns a copy 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 NodeWithConstraint
impl Debug for NodeWithConstraint
Source§impl PartialEq for NodeWithConstraint
impl PartialEq for NodeWithConstraint
Source§impl PartialOrd for NodeWithConstraint
impl PartialOrd for NodeWithConstraint
impl Eq for NodeWithConstraint
impl StructuralPartialEq for NodeWithConstraint
Auto Trait Implementations§
impl Freeze for NodeWithConstraint
impl RefUnwindSafe for NodeWithConstraint
impl Send for NodeWithConstraint
impl Sync for NodeWithConstraint
impl Unpin for NodeWithConstraint
impl UnwindSafe for NodeWithConstraint
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