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