pub enum BinsExpression {
    VariableIdentifier(Box<VariableIdentifier>),
    CoverPoint(Box<BinsExpressionCoverPoint>),
}Variants§
VariableIdentifier(Box<VariableIdentifier>)
CoverPoint(Box<BinsExpressionCoverPoint>)
Trait Implementations§
Source§impl Clone for BinsExpression
 
impl Clone for BinsExpression
Source§fn clone(&self) -> BinsExpression
 
fn clone(&self) -> BinsExpression
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 BinsExpression
 
impl Debug for BinsExpression
Source§impl<'a> From<&'a BinsExpression> for RefNode<'a>
 
impl<'a> From<&'a BinsExpression> for RefNode<'a>
Source§fn from(x: &'a BinsExpression) -> RefNode<'a>
 
fn from(x: &'a BinsExpression) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a BinsExpression> for RefNodes<'a>
 
impl<'a> From<&'a BinsExpression> for RefNodes<'a>
Source§fn from(x: &'a BinsExpression) -> RefNodes<'a>
 
fn from(x: &'a BinsExpression) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<BinsExpression> for AnyNode
 
impl From<BinsExpression> for AnyNode
Source§fn from(x: BinsExpression) -> AnyNode
 
fn from(x: BinsExpression) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a BinsExpression
 
impl<'a> IntoIterator for &'a BinsExpression
Source§impl PartialEq for BinsExpression
 
impl PartialEq for BinsExpression
Source§impl<'a> TryFrom<&'a BinsExpression> for Locate
 
impl<'a> TryFrom<&'a BinsExpression> for Locate
Source§impl TryFrom<AnyNode> for BinsExpression
 
impl TryFrom<AnyNode> for BinsExpression
Source§impl TryFrom<BinsExpression> for Locate
 
impl TryFrom<BinsExpression> for Locate
impl StructuralPartialEq for BinsExpression
Auto Trait Implementations§
impl Freeze for BinsExpression
impl RefUnwindSafe for BinsExpression
impl Send for BinsExpression
impl Sync for BinsExpression
impl Unpin for BinsExpression
impl UnwindSafe for BinsExpression
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