Struct ezno_parser::statements::ImportStatement
source · pub struct ImportStatement {
pub default_import: Option<String>,
pub imports: Option<Vec<ImportPart>>,
pub import_statement_id: ImportStatementId,
pub from: String,
pub only_type: bool,
pub position: Span,
}
Expand description
TODO a few more thing needed here
Fields§
§default_import: Option<String>
§imports: Option<Vec<ImportPart>>
§import_statement_id: ImportStatementId
§from: String
§only_type: bool
§position: Span
Trait Implementations§
source§impl ASTNode for ImportStatement
impl ASTNode for ImportStatement
fn from_reader( reader: &mut impl TokenReader<TSXToken, Span>, state: &mut ParsingState, settings: &ParseSettings ) -> ParseResult<Self>
fn to_string_from_buffer<T: ToString>( &self, buf: &mut T, _settings: &ToStringSettingsAndData, _depth: u8 )
source§fn get_position(&self) -> Cow<'_, Span>
fn get_position(&self) -> Cow<'_, Span>
Returns position of node as span AS IT WAS PARSED. May be none if AST was doesn’t match anything in source
source§fn from_string(
source: String,
settings: ParseSettings,
source_id: SourceId,
offset: Option<usize>,
cursors: Vec<(usize, EmptyCursorId)>
) -> ParseResult<ParseOutput<Self>>
fn from_string( source: String, settings: ParseSettings, source_id: SourceId, offset: Option<usize>, cursors: Vec<(usize, EmptyCursorId)> ) -> ParseResult<ParseOutput<Self>>
From string, with default impl to call abstract method from_reader
source§fn to_string(&self, settings: &ToStringSettingsAndData) -> String
fn to_string(&self, settings: &ToStringSettingsAndData) -> String
Returns structure as valid string
source§impl Clone for ImportStatement
impl Clone for ImportStatement
source§fn clone(&self) -> ImportStatement
fn clone(&self) -> ImportStatement
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 ImportStatement
impl Debug for ImportStatement
source§impl From<ImportStatement> for Statement
impl From<ImportStatement> for Statement
source§fn from(item: ImportStatement) -> Statement
fn from(item: ImportStatement) -> Statement
Converts to this type from the input type.
source§impl PartialEq<ImportStatement> for ImportStatement
impl PartialEq<ImportStatement> for ImportStatement
source§fn eq(&self, other: &ImportStatement) -> bool
fn eq(&self, other: &ImportStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl SelfRustTokenize for ImportStatement
impl SelfRustTokenize for ImportStatement
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