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