pub enum SourceDescription {
Comment(Box<Comment>),
StringLiteral(Box<StringLiteral>),
NotDirective(Box<SourceDescriptionNotDirective>),
CompilerDirective(Box<CompilerDirective>),
EscapedIdentifier(Box<EscapedIdentifier>),
}Variants
Comment(Box<Comment>)
StringLiteral(Box<StringLiteral>)
NotDirective(Box<SourceDescriptionNotDirective>)
CompilerDirective(Box<CompilerDirective>)
EscapedIdentifier(Box<EscapedIdentifier>)
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SourceDescription
impl Send for SourceDescription
impl Sync for SourceDescription
impl Unpin for SourceDescription
impl UnwindSafe for SourceDescription
Blanket Implementations
Mutably borrows from an owned value. Read more