pub enum CompilerDirective {
Show 18 variants
    ResetallCompilerDirective(Box<ResetallCompilerDirective>),
    IncludeCompilerDirective(Box<IncludeCompilerDirective>),
    TextMacroDefinition(Box<TextMacroDefinition>),
    TextMacroUsage(Box<TextMacroUsage>),
    UndefineCompilerDirective(Box<UndefineCompilerDirective>),
    UndefineallCompilerDirective(Box<UndefineallCompilerDirective>),
    ConditionalCompilerDirective(Box<ConditionalCompilerDirective>),
    TimescaleCompilerDirective(Box<TimescaleCompilerDirective>),
    DefaultNettypeCompilerDirective(Box<DefaultNettypeCompilerDirective>),
    UnconnectedDriveCompilerDirective(Box<UnconnectedDriveCompilerDirective>),
    NounconnectedDriveCompilerDirective(Box<NounconnectedDriveCompilerDirective>),
    CelldefineDriveCompilerDirective(Box<CelldefineDriveCompilerDirective>),
    EndcelldefineDriveCompilerDirective(Box<EndcelldefineDriveCompilerDirective>),
    Pragma(Box<Pragma>),
    LineCompilerDirective(Box<LineCompilerDirective>),
    PositionCompilerDirective(Box<PositionCompilerDirective>),
    KeywordsDirective(Box<KeywordsDirective>),
    EndkeywordsDirective(Box<EndkeywordsDirective>),
}Variants§
ResetallCompilerDirective(Box<ResetallCompilerDirective>)
IncludeCompilerDirective(Box<IncludeCompilerDirective>)
TextMacroDefinition(Box<TextMacroDefinition>)
TextMacroUsage(Box<TextMacroUsage>)
UndefineCompilerDirective(Box<UndefineCompilerDirective>)
UndefineallCompilerDirective(Box<UndefineallCompilerDirective>)
ConditionalCompilerDirective(Box<ConditionalCompilerDirective>)
TimescaleCompilerDirective(Box<TimescaleCompilerDirective>)
DefaultNettypeCompilerDirective(Box<DefaultNettypeCompilerDirective>)
UnconnectedDriveCompilerDirective(Box<UnconnectedDriveCompilerDirective>)
NounconnectedDriveCompilerDirective(Box<NounconnectedDriveCompilerDirective>)
CelldefineDriveCompilerDirective(Box<CelldefineDriveCompilerDirective>)
EndcelldefineDriveCompilerDirective(Box<EndcelldefineDriveCompilerDirective>)
Pragma(Box<Pragma>)
LineCompilerDirective(Box<LineCompilerDirective>)
PositionCompilerDirective(Box<PositionCompilerDirective>)
KeywordsDirective(Box<KeywordsDirective>)
EndkeywordsDirective(Box<EndkeywordsDirective>)
Trait Implementations§
Source§impl Clone for CompilerDirective
 
impl Clone for CompilerDirective
Source§fn clone(&self) -> CompilerDirective
 
fn clone(&self) -> CompilerDirective
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 CompilerDirective
 
impl Debug for CompilerDirective
Source§impl<'a> From<&'a CompilerDirective> for RefNode<'a>
 
impl<'a> From<&'a CompilerDirective> for RefNode<'a>
Source§fn from(x: &'a CompilerDirective) -> RefNode<'a>
 
fn from(x: &'a CompilerDirective) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a CompilerDirective> for RefNodes<'a>
 
impl<'a> From<&'a CompilerDirective> for RefNodes<'a>
Source§fn from(x: &'a CompilerDirective) -> RefNodes<'a>
 
fn from(x: &'a CompilerDirective) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<CompilerDirective> for AnyNode
 
impl From<CompilerDirective> for AnyNode
Source§fn from(x: CompilerDirective) -> AnyNode
 
fn from(x: CompilerDirective) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a CompilerDirective
 
impl<'a> IntoIterator for &'a CompilerDirective
Source§impl PartialEq for CompilerDirective
 
impl PartialEq for CompilerDirective
Source§impl<'a> TryFrom<&'a CompilerDirective> for Locate
 
impl<'a> TryFrom<&'a CompilerDirective> for Locate
Source§impl TryFrom<AnyNode> for CompilerDirective
 
impl TryFrom<AnyNode> for CompilerDirective
Source§impl TryFrom<CompilerDirective> for Locate
 
impl TryFrom<CompilerDirective> for Locate
impl StructuralPartialEq for CompilerDirective
Auto Trait Implementations§
impl Freeze for CompilerDirective
impl RefUnwindSafe for CompilerDirective
impl Send for CompilerDirective
impl Sync for CompilerDirective
impl Unpin for CompilerDirective
impl UnwindSafe for CompilerDirective
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