Enum ezno_parser::declarations::import::ImportPart
source · pub enum ImportPart {
Name(VariableIdentifier),
NameWithAlias {
name: String,
alias: ImportExportName,
position: Span,
},
PrefixComment(String, Option<Box<Self>>, Span),
PostfixComment(Box<Self>, String, Span),
}
Expand description
Variants§
Name(VariableIdentifier)
NameWithAlias
PrefixComment(String, Option<Box<Self>>, Span)
PostfixComment(Box<Self>, String, Span)
Trait Implementations§
source§impl ASTNode for ImportPart
impl ASTNode for ImportPart
source§fn get_position(&self) -> Span
fn get_position(&self) -> Span
Returns position of node as span AS IT WAS PARSED. May be
Span::NULL
if AST was doesn’t match anything in sourcefn from_reader( reader: &mut impl TokenReader<TSXToken, TokenStart>, state: &mut ParsingState, options: &ParseOptions ) -> ParseResult<Self>
fn to_string_from_buffer<T: ToString>( &self, buf: &mut T, options: &ToStringOptions, local: LocalToStringInformation )
source§fn from_string(script: String, options: ParseOptions) -> ParseResult<Self>
fn from_string(script: String, options: ParseOptions) -> ParseResult<Self>
From string, with default impl to call abstract method
from_reader
fn from_string_with_options( script: String, options: ParseOptions, offset: Option<u32> ) -> ParseResult<(Self, ParsingState)>
source§fn to_string(&self, options: &ToStringOptions) -> String
fn to_string(&self, options: &ToStringOptions) -> String
Returns structure as valid string
source§impl Clone for ImportPart
impl Clone for ImportPart
source§fn clone(&self) -> ImportPart
fn clone(&self) -> ImportPart
Returns a copy 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 ImportPart
impl Debug for ImportPart
source§impl GetFieldByType<BaseSpan<()>> for ImportPart
impl GetFieldByType<BaseSpan<()>> for ImportPart
source§impl ListItem for ImportPart
impl ListItem for ImportPart
source§impl PartialEq for ImportPart
impl PartialEq for ImportPart
source§fn eq(&self, other: &ImportPart) -> bool
fn eq(&self, other: &ImportPart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SelfRustTokenize for ImportPart
impl SelfRustTokenize for ImportPart
fn append_to_token_stream(&self, token_stream: &mut TokenStream)
source§fn to_tokens(&self) -> TokenStream
fn to_tokens(&self) -> TokenStream
Returns the tokens used to construct self
source§impl Serialize for ImportPart
impl Serialize for ImportPart
source§impl Visitable for ImportPart
impl Visitable for ImportPart
fn visit<TData>( &self, visitors: &mut (impl VisitorReceiver<TData> + ?Sized), data: &mut TData, options: &VisitOptions, chain: &mut Annex<'_, Chain> )
fn visit_mut<TData>( &mut self, visitors: &mut (impl VisitorMutReceiver<TData> + ?Sized), data: &mut TData, options: &VisitOptions, chain: &mut Annex<'_, Chain> )
impl StructuralPartialEq for ImportPart
Auto Trait Implementations§
impl Freeze for ImportPart
impl RefUnwindSafe for ImportPart
impl Send for ImportPart
impl Sync for ImportPart
impl Unpin for ImportPart
impl UnwindSafe for ImportPart
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