pub enum ConditionalCompilerDirective {
    IfdefDirective(Box<IfdefDirective>),
    IfndefDirective(Box<IfndefDirective>),
}Variants§
IfdefDirective(Box<IfdefDirective>)
IfndefDirective(Box<IfndefDirective>)
Trait Implementations§
Source§impl Clone for ConditionalCompilerDirective
 
impl Clone for ConditionalCompilerDirective
Source§fn clone(&self) -> ConditionalCompilerDirective
 
fn clone(&self) -> ConditionalCompilerDirective
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 ConditionalCompilerDirective
 
impl Debug for ConditionalCompilerDirective
Source§impl<'a> From<&'a ConditionalCompilerDirective> for RefNode<'a>
 
impl<'a> From<&'a ConditionalCompilerDirective> for RefNode<'a>
Source§fn from(x: &'a ConditionalCompilerDirective) -> RefNode<'a>
 
fn from(x: &'a ConditionalCompilerDirective) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ConditionalCompilerDirective> for RefNodes<'a>
 
impl<'a> From<&'a ConditionalCompilerDirective> for RefNodes<'a>
Source§fn from(x: &'a ConditionalCompilerDirective) -> RefNodes<'a>
 
fn from(x: &'a ConditionalCompilerDirective) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ConditionalCompilerDirective> for AnyNode
 
impl From<ConditionalCompilerDirective> for AnyNode
Source§fn from(x: ConditionalCompilerDirective) -> AnyNode
 
fn from(x: ConditionalCompilerDirective) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ConditionalCompilerDirective
 
impl<'a> IntoIterator for &'a ConditionalCompilerDirective
Source§impl PartialEq for ConditionalCompilerDirective
 
impl PartialEq for ConditionalCompilerDirective
Source§fn eq(&self, other: &ConditionalCompilerDirective) -> bool
 
fn eq(&self, other: &ConditionalCompilerDirective) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a ConditionalCompilerDirective> for Locate
 
impl<'a> TryFrom<&'a ConditionalCompilerDirective> for Locate
Source§impl TryFrom<ConditionalCompilerDirective> for Locate
 
impl TryFrom<ConditionalCompilerDirective> for Locate
impl StructuralPartialEq for ConditionalCompilerDirective
Auto Trait Implementations§
impl Freeze for ConditionalCompilerDirective
impl RefUnwindSafe for ConditionalCompilerDirective
impl Send for ConditionalCompilerDirective
impl Sync for ConditionalCompilerDirective
impl Unpin for ConditionalCompilerDirective
impl UnwindSafe for ConditionalCompilerDirective
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