pub struct ClassConstructorBase;
Trait Implementations§
Source§impl Clone for ClassConstructorBase
impl Clone for ClassConstructorBase
Source§fn clone(&self) -> ClassConstructorBase
fn clone(&self) -> ClassConstructorBase
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 ClassConstructorBase
impl Debug for ClassConstructorBase
Source§impl FunctionBased for ClassConstructorBase
impl FunctionBased for ClassConstructorBase
Source§type Body = FunctionBody
type Body = FunctionBody
The body of the function
Source§type LeadingParameter = (Option<ThisParameter>, Option<SuperParameter>)
type LeadingParameter = (Option<ThisParameter>, Option<SuperParameter>)
Cfg to make up for the fact
serde_derive
does not use syn_helpers
Source§type ParameterVisibility = Option<Visibility>
type ParameterVisibility = Option<Visibility>
Cfg to make up for the fact
serde_derive
does not use syn_helpers
fn header_and_name_from_reader( reader: &mut impl TokenReader<TSXToken, TokenStart>, state: &mut ParsingState, _options: &ParseOptions, ) -> ParseResult<(HeadingAndPosition<Self>, Self::Name)>
fn header_and_name_to_string_from_buffer<T: ToString>( buf: &mut T, _header: &Self::Header, _name: &Self::Name, _options: &ToStringOptions, _local: LocalToStringInformation, )
fn visit_name<TData>( (): &Self::Name, _: &mut (impl VisitorReceiver<TData> + ?Sized), _: &mut TData, _: &VisitOptions, _: &mut Annex<'_, Chain>, )
fn visit_name_mut<TData>( (): &mut Self::Name, _: &mut (impl VisitorMutReceiver<TData> + ?Sized), _: &mut TData, _: &VisitOptions, _: &mut Annex<'_, Chain>, )
Source§fn get_parameter_body_boundary_token() -> Option<TSXToken>
fn get_parameter_body_boundary_token() -> Option<TSXToken>
For [
crate::ArrowFunction
]Source§fn parameters_from_reader<T: ToString>(
reader: &mut impl TokenReader<TSXToken, TokenStart>,
state: &mut ParsingState,
options: &ParseOptions,
) -> ParseResult<FunctionParameters<Self::LeadingParameter, Self::ParameterVisibility>>
fn parameters_from_reader<T: ToString>( reader: &mut impl TokenReader<TSXToken, TokenStart>, state: &mut ParsingState, options: &ParseOptions, ) -> ParseResult<FunctionParameters<Self::LeadingParameter, Self::ParameterVisibility>>
For [
crate::ArrowFunction
]Source§fn parameters_to_string_from_buffer<T: ToString>(
buf: &mut T,
parameters: &FunctionParameters<Self::LeadingParameter, Self::ParameterVisibility>,
options: &ToStringOptions,
local: LocalToStringInformation,
)
fn parameters_to_string_from_buffer<T: ToString>( buf: &mut T, parameters: &FunctionParameters<Self::LeadingParameter, Self::ParameterVisibility>, options: &ToStringOptions, local: LocalToStringInformation, )
For [
crate::ArrowFunction
]Source§fn parameter_body_boundary_token_to_string_from_buffer<T: ToString>(
buf: &mut T,
options: &ToStringOptions,
)
fn parameter_body_boundary_token_to_string_from_buffer<T: ToString>( buf: &mut T, options: &ToStringOptions, )
For [
crate::ArrowFunction
]Source§impl Hash for ClassConstructorBase
impl Hash for ClassConstructorBase
Source§impl PartialEq for ClassConstructorBase
impl PartialEq for ClassConstructorBase
impl Eq for ClassConstructorBase
impl StructuralPartialEq for ClassConstructorBase
Auto Trait Implementations§
impl Freeze for ClassConstructorBase
impl RefUnwindSafe for ClassConstructorBase
impl Send for ClassConstructorBase
impl Sync for ClassConstructorBase
impl Unpin for ClassConstructorBase
impl UnwindSafe for ClassConstructorBase
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