Struct ezno_parser::Decorated
source · pub struct Decorated<T> {
pub decorators: Vec<Decorator>,
pub on: T,
}
Expand description
TODO under cfg if don’t want this could just be type Decorated<T> = T;
Fields§
§decorators: Vec<Decorator>
§on: T
Implementations§
Trait Implementations§
source§impl<N: ASTNode> ASTNode for Decorated<N>
impl<N: ASTNode> ASTNode for Decorated<N>
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
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 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 From<Decorated<ClassDeclaration<StatementPosition>>> for Statement
impl From<Decorated<ClassDeclaration<StatementPosition>>> for Statement
source§fn from(item: Decorated<ClassDeclaration<StatementPosition>>) -> Statement
fn from(item: Decorated<ClassDeclaration<StatementPosition>>) -> Statement
Converts to this type from the input type.
source§impl<T: PartialEq> PartialEq<Decorated<T>> for Decorated<T>
impl<T: PartialEq> PartialEq<Decorated<T>> for Decorated<T>
source§impl<T> SelfRustTokenize for Decorated<T>where
T: SelfRustTokenize,
impl<T> SelfRustTokenize for Decorated<T>where T: SelfRustTokenize,
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