pub struct ConditionalExpression {
    pub nodes: (CondPredicate, Symbol, Vec<AttributeInstance>, Expression, Symbol, Expression),
}Fields§
§nodes: (CondPredicate, Symbol, Vec<AttributeInstance>, Expression, Symbol, Expression)Trait Implementations§
Source§impl Clone for ConditionalExpression
 
impl Clone for ConditionalExpression
Source§fn clone(&self) -> ConditionalExpression
 
fn clone(&self) -> ConditionalExpression
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 ConditionalExpression
 
impl Debug for ConditionalExpression
Source§impl<'a> From<&'a ConditionalExpression> for RefNode<'a>
 
impl<'a> From<&'a ConditionalExpression> for RefNode<'a>
Source§fn from(x: &'a ConditionalExpression) -> RefNode<'a>
 
fn from(x: &'a ConditionalExpression) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ConditionalExpression> for RefNodes<'a>
 
impl<'a> From<&'a ConditionalExpression> for RefNodes<'a>
Source§fn from(x: &'a ConditionalExpression) -> RefNodes<'a>
 
fn from(x: &'a ConditionalExpression) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ConditionalExpression> for AnyNode
 
impl From<ConditionalExpression> for AnyNode
Source§fn from(x: ConditionalExpression) -> AnyNode
 
fn from(x: ConditionalExpression) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ConditionalExpression
 
impl<'a> IntoIterator for &'a ConditionalExpression
Source§impl PartialEq for ConditionalExpression
 
impl PartialEq for ConditionalExpression
Source§impl<'a> TryFrom<&'a ConditionalExpression> for Locate
 
impl<'a> TryFrom<&'a ConditionalExpression> for Locate
Source§impl TryFrom<AnyNode> for ConditionalExpression
 
impl TryFrom<AnyNode> for ConditionalExpression
Source§impl TryFrom<ConditionalExpression> for Locate
 
impl TryFrom<ConditionalExpression> for Locate
impl StructuralPartialEq for ConditionalExpression
Auto Trait Implementations§
impl Freeze for ConditionalExpression
impl RefUnwindSafe for ConditionalExpression
impl Send for ConditionalExpression
impl Sync for ConditionalExpression
impl Unpin for ConditionalExpression
impl UnwindSafe for ConditionalExpression
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