pub enum InterfaceMember {
Method {
header: MethodHeader,
name: PropertyKey<PublicOrPrivate>,
type_parameters: Option<Vec<TypeParameter>>,
parameters: TypeAnnotationFunctionParameters,
return_type: Option<TypeAnnotation>,
is_optional: bool,
position: Span,
},
Property {
name: PropertyKey<PublicOrPrivate>,
type_annotation: TypeAnnotation,
is_readonly: bool,
is_optional: bool,
position: Span,
},
Indexer {
name: String,
indexer_type: TypeAnnotation,
return_type: TypeAnnotation,
is_readonly: bool,
position: Span,
},
Constructor {
type_parameters: Option<Vec<TypeParameter>>,
parameters: TypeAnnotationFunctionParameters,
return_type: Option<TypeAnnotation>,
is_readonly: bool,
position: Span,
},
Caller {
type_parameters: Option<Vec<TypeParameter>>,
parameters: TypeAnnotationFunctionParameters,
return_type: Option<TypeAnnotation>,
is_readonly: bool,
position: Span,
},
Rule {
parameter: String,
matching_type: Box<TypeAnnotation>,
as_type: Option<Box<TypeAnnotation>>,
optionality: Optionality,
is_readonly: MappedReadonlyKind,
output_type: Box<TypeAnnotation>,
position: Span,
},
Comment(String, bool, Span),
}
Expand description
This is also used for TypeAnnotation::ObjectLiteral
Variants§
Method
Fields
§
header: MethodHeader
§
name: PropertyKey<PublicOrPrivate>
§
type_parameters: Option<Vec<TypeParameter>>
§
parameters: TypeAnnotationFunctionParameters
§
return_type: Option<TypeAnnotation>
Property
Indexer
Constructor
Example
new (...params: any[]): HTMLElement
Fields
§
type_parameters: Option<Vec<TypeParameter>>
§
parameters: TypeAnnotationFunctionParameters
§
return_type: Option<TypeAnnotation>
Caller
Fields
§
type_parameters: Option<Vec<TypeParameter>>
§
parameters: TypeAnnotationFunctionParameters
§
return_type: Option<TypeAnnotation>
Rule
Fields
§
matching_type: Box<TypeAnnotation>
§
as_type: Option<Box<TypeAnnotation>>
§
optionality: Optionality
§
is_readonly: MappedReadonlyKind
§
output_type: Box<TypeAnnotation>
Comment(String, bool, Span)
Trait Implementations§
Source§impl ASTNode for InterfaceMember
impl ASTNode for InterfaceMember
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, local: LocalToStringInformation, )
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 sourceSource§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 InterfaceMember
impl Clone for InterfaceMember
Source§fn clone(&self) -> InterfaceMember
fn clone(&self) -> InterfaceMember
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 InterfaceMember
impl Debug for InterfaceMember
Source§impl GetFieldByType<BaseSpan<()>> for InterfaceMember
impl GetFieldByType<BaseSpan<()>> for InterfaceMember
Source§impl PartialEq for InterfaceMember
impl PartialEq for InterfaceMember
Source§impl SelfRustTokenize for InterfaceMember
impl SelfRustTokenize for InterfaceMember
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 InterfaceMember
impl Serialize for InterfaceMember
impl StructuralPartialEq for InterfaceMember
Auto Trait Implementations§
impl Freeze for InterfaceMember
impl RefUnwindSafe for InterfaceMember
impl Send for InterfaceMember
impl Sync for InterfaceMember
impl Unpin for InterfaceMember
impl UnwindSafe for InterfaceMember
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