pub enum BinsOrOptions {
    CoverageOption(Box<CoverageOption>),
    Covergroup(Box<BinsOrOptionsCovergroup>),
    CoverPoint(Box<BinsOrOptionsCoverPoint>),
    SetCovergroup(Box<BinsOrOptionsSetCovergroup>),
    TransList(Box<BinsOrOptionsTransList>),
    Default(Box<BinsOrOptionsDefault>),
    DefaultSequence(Box<BinsOrOptionsDefaultSequence>),
}Variants§
CoverageOption(Box<CoverageOption>)
Covergroup(Box<BinsOrOptionsCovergroup>)
CoverPoint(Box<BinsOrOptionsCoverPoint>)
SetCovergroup(Box<BinsOrOptionsSetCovergroup>)
TransList(Box<BinsOrOptionsTransList>)
Default(Box<BinsOrOptionsDefault>)
DefaultSequence(Box<BinsOrOptionsDefaultSequence>)
Trait Implementations§
Source§impl Clone for BinsOrOptions
 
impl Clone for BinsOrOptions
Source§fn clone(&self) -> BinsOrOptions
 
fn clone(&self) -> BinsOrOptions
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 BinsOrOptions
 
impl Debug for BinsOrOptions
Source§impl<'a> From<&'a BinsOrOptions> for RefNode<'a>
 
impl<'a> From<&'a BinsOrOptions> for RefNode<'a>
Source§fn from(x: &'a BinsOrOptions) -> RefNode<'a>
 
fn from(x: &'a BinsOrOptions) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a BinsOrOptions> for RefNodes<'a>
 
impl<'a> From<&'a BinsOrOptions> for RefNodes<'a>
Source§fn from(x: &'a BinsOrOptions) -> RefNodes<'a>
 
fn from(x: &'a BinsOrOptions) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<BinsOrOptions> for AnyNode
 
impl From<BinsOrOptions> for AnyNode
Source§fn from(x: BinsOrOptions) -> AnyNode
 
fn from(x: BinsOrOptions) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a BinsOrOptions
 
impl<'a> IntoIterator for &'a BinsOrOptions
Source§impl PartialEq for BinsOrOptions
 
impl PartialEq for BinsOrOptions
Source§impl<'a> TryFrom<&'a BinsOrOptions> for Locate
 
impl<'a> TryFrom<&'a BinsOrOptions> for Locate
Source§impl TryFrom<AnyNode> for BinsOrOptions
 
impl TryFrom<AnyNode> for BinsOrOptions
Source§impl TryFrom<BinsOrOptions> for Locate
 
impl TryFrom<BinsOrOptions> for Locate
impl StructuralPartialEq for BinsOrOptions
Auto Trait Implementations§
impl Freeze for BinsOrOptions
impl RefUnwindSafe for BinsOrOptions
impl Send for BinsOrOptions
impl Sync for BinsOrOptions
impl Unpin for BinsOrOptions
impl UnwindSafe for BinsOrOptions
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