Struct ezno_parser::types::declares::DeclareClassDeclaration
source · pub struct DeclareClassDeclaration {
pub name: String,
pub type_parameters: Option<Vec<GenericTypeConstraint>>,
pub extends: Option<TypeAnnotation>,
}
Fields§
§name: String
§type_parameters: Option<Vec<GenericTypeConstraint>>
§extends: Option<TypeAnnotation>
Trait Implementations§
source§impl ASTNode for DeclareClassDeclaration
impl ASTNode for DeclareClassDeclaration
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 source
fn 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, _depth: u8 )
source§fn from_string(
script: String,
options: ParseOptions,
source: SourceId,
offset: Option<u32>
) -> ParseResult<Self>
fn from_string( script: String, options: ParseOptions, source: SourceId, offset: Option<u32> ) -> ParseResult<Self>
From string, with default impl to call abstract method from_reader
source§fn to_string(&self, options: &ToStringOptions) -> String
fn to_string(&self, options: &ToStringOptions) -> String
Returns structure as valid string
source§impl Clone for DeclareClassDeclaration
impl Clone for DeclareClassDeclaration
source§fn clone(&self) -> DeclareClassDeclaration
fn clone(&self) -> DeclareClassDeclaration
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 DeclareClassDeclaration
impl Debug for DeclareClassDeclaration
source§impl PartialEq for DeclareClassDeclaration
impl PartialEq for DeclareClassDeclaration
source§fn eq(&self, other: &DeclareClassDeclaration) -> bool
fn eq(&self, other: &DeclareClassDeclaration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DeclareClassDeclaration
impl StructuralEq for DeclareClassDeclaration
impl StructuralPartialEq for DeclareClassDeclaration
Auto Trait Implementations§
impl RefUnwindSafe for DeclareClassDeclaration
impl Send for DeclareClassDeclaration
impl Sync for DeclareClassDeclaration
impl Unpin for DeclareClassDeclaration
impl UnwindSafe for DeclareClassDeclaration
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