pub enum ParametricBuiltinType {
FloatN(isize),
FloatNx(isize),
SignedBitInt(isize),
UnsignedBitInt(isize),
SignedBitIntExpression(Box<Expression>),
UnsignedBitIntExpression(Box<Expression>),
}Expand description
Variants§
FloatN(isize)
_FloatN
FloatNx(isize)
_FloatNx
SignedBitInt(isize)
signed _BitInt(N)
UnsignedBitInt(isize)
unsigned _BitInt(N)
SignedBitIntExpression(Box<Expression>)
signed _BitInt(expr)
UnsignedBitIntExpression(Box<Expression>)
unsigned _BitInt(expr)
Trait Implementations§
Source§impl Clone for ParametricBuiltinType
impl Clone for ParametricBuiltinType
Source§fn clone(&self) -> ParametricBuiltinType
fn clone(&self) -> ParametricBuiltinType
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 ParametricBuiltinType
impl Debug for ParametricBuiltinType
Source§impl PartialEq for ParametricBuiltinType
impl PartialEq for ParametricBuiltinType
impl Eq for ParametricBuiltinType
impl StructuralPartialEq for ParametricBuiltinType
Auto Trait Implementations§
impl Freeze for ParametricBuiltinType
impl RefUnwindSafe for ParametricBuiltinType
impl Send for ParametricBuiltinType
impl Sync for ParametricBuiltinType
impl Unpin for ParametricBuiltinType
impl UnwindSafe for ParametricBuiltinType
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