pub enum BinsExpression<'a> {
Variable(Box<VariableIdentifier<'a>>),
CoverPoint(Box<(CoverPointIdentifier<'a>, Option<(Metadata<'a>, BinIdentifier<'a>)>)>),
}Variants§
Variable(Box<VariableIdentifier<'a>>)
CoverPoint(Box<(CoverPointIdentifier<'a>, Option<(Metadata<'a>, BinIdentifier<'a>)>)>)
Implementations§
Source§impl<'a: 'b, 'b> BinsExpression<'a>
impl<'a: 'b, 'b> BinsExpression<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the BinsExpression and its children
Trait Implementations§
Source§impl<'a> Clone for BinsExpression<'a>
impl<'a> Clone for BinsExpression<'a>
Source§fn clone(&self) -> BinsExpression<'a>
fn clone(&self) -> BinsExpression<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for BinsExpression<'a>
impl<'a> Debug for BinsExpression<'a>
Source§impl<'a: 'b, 'b> From<&'b BinsExpression<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b BinsExpression<'a>> for Node<'a, 'b>
Source§fn from(value: &'b BinsExpression<'a>) -> Self
fn from(value: &'b BinsExpression<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b BinsExpression<'a>
impl<'a: 'b, 'b> IntoIterator for &'b BinsExpression<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for BinsExpression<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for BinsExpression<'a>
Source§impl<'a> PartialEq for BinsExpression<'a>
impl<'a> PartialEq for BinsExpression<'a>
Source§fn eq(&self, other: &BinsExpression<'a>) -> bool
fn eq(&self, other: &BinsExpression<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for BinsExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for BinsExpression<'a>
impl<'a> RefUnwindSafe for BinsExpression<'a>
impl<'a> Send for BinsExpression<'a>
impl<'a> Sync for BinsExpression<'a>
impl<'a> Unpin for BinsExpression<'a>
impl<'a> UnsafeUnpin for BinsExpression<'a>
impl<'a> UnwindSafe for BinsExpression<'a>
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