pub enum GroundType {
UInt {
width: u32,
},
SInt {
width: u32,
},
Clock,
Reset,
Bool,
Analog,
}Expand description
Ground types for phase-1 HIR (AD-12).
Variants§
Trait Implementations§
Source§impl Clone for GroundType
impl Clone for GroundType
Source§fn clone(&self) -> GroundType
fn clone(&self) -> GroundType
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 Debug for GroundType
impl Debug for GroundType
impl Eq for GroundType
Source§impl PartialEq for GroundType
impl PartialEq for GroundType
impl StructuralPartialEq for GroundType
Auto Trait Implementations§
impl Freeze for GroundType
impl RefUnwindSafe for GroundType
impl Send for GroundType
impl Sync for GroundType
impl Unpin for GroundType
impl UnsafeUnpin for GroundType
impl UnwindSafe for GroundType
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