pub enum GateInstantiation {
    Cmos(Box<GateInstantiationCmos>),
    Enable(Box<GateInstantiationEnable>),
    Mos(Box<GateInstantiationMos>),
    NInput(Box<GateInstantiationNInput>),
    NOutput(Box<GateInstantiationNOutput>),
    PassEn(Box<GateInstantiationPassEn>),
    Pass(Box<GateInstantiationPass>),
    Pulldown(Box<GateInstantiationPulldown>),
    Pullup(Box<GateInstantiationPullup>),
}Variants§
Cmos(Box<GateInstantiationCmos>)
Enable(Box<GateInstantiationEnable>)
Mos(Box<GateInstantiationMos>)
NInput(Box<GateInstantiationNInput>)
NOutput(Box<GateInstantiationNOutput>)
PassEn(Box<GateInstantiationPassEn>)
Pass(Box<GateInstantiationPass>)
Pulldown(Box<GateInstantiationPulldown>)
Pullup(Box<GateInstantiationPullup>)
Trait Implementations§
Source§impl Clone for GateInstantiation
 
impl Clone for GateInstantiation
Source§fn clone(&self) -> GateInstantiation
 
fn clone(&self) -> GateInstantiation
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 GateInstantiation
 
impl Debug for GateInstantiation
Source§impl<'a> From<&'a GateInstantiation> for RefNode<'a>
 
impl<'a> From<&'a GateInstantiation> for RefNode<'a>
Source§fn from(x: &'a GateInstantiation) -> RefNode<'a>
 
fn from(x: &'a GateInstantiation) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a GateInstantiation> for RefNodes<'a>
 
impl<'a> From<&'a GateInstantiation> for RefNodes<'a>
Source§fn from(x: &'a GateInstantiation) -> RefNodes<'a>
 
fn from(x: &'a GateInstantiation) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<GateInstantiation> for AnyNode
 
impl From<GateInstantiation> for AnyNode
Source§fn from(x: GateInstantiation) -> AnyNode
 
fn from(x: GateInstantiation) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a GateInstantiation
 
impl<'a> IntoIterator for &'a GateInstantiation
Source§impl PartialEq for GateInstantiation
 
impl PartialEq for GateInstantiation
Source§impl<'a> TryFrom<&'a GateInstantiation> for Locate
 
impl<'a> TryFrom<&'a GateInstantiation> for Locate
Source§impl TryFrom<AnyNode> for GateInstantiation
 
impl TryFrom<AnyNode> for GateInstantiation
Source§impl TryFrom<GateInstantiation> for Locate
 
impl TryFrom<GateInstantiation> for Locate
impl StructuralPartialEq for GateInstantiation
Auto Trait Implementations§
impl Freeze for GateInstantiation
impl RefUnwindSafe for GateInstantiation
impl Send for GateInstantiation
impl Sync for GateInstantiation
impl Unpin for GateInstantiation
impl UnwindSafe for GateInstantiation
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