pub struct TsConstructSignatureDecl {
pub span: Span,
pub params: Vec<TsFnParam>,
pub type_ann: Option<Box<TsTypeAnn>>,
pub type_params: Option<Box<TsTypeParamDecl>>,
}
Fields§
§span: Span
§params: Vec<TsFnParam>
§type_ann: Option<Box<TsTypeAnn>>
§type_params: Option<Box<TsTypeParamDecl>>
Trait Implementations§
Source§impl AstNode for TsConstructSignatureDecl
impl AstNode for TsConstructSignatureDecl
Source§impl Clone for TsConstructSignatureDecl
impl Clone for TsConstructSignatureDecl
Source§fn clone(&self) -> TsConstructSignatureDecl
fn clone(&self) -> TsConstructSignatureDecl
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 TsConstructSignatureDecl
impl Debug for TsConstructSignatureDecl
Source§impl<'de> Deserialize<'de> for TsConstructSignatureDecl
impl<'de> Deserialize<'de> for TsConstructSignatureDecl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EqIgnoreSpan for TsConstructSignatureDecl
impl EqIgnoreSpan for TsConstructSignatureDecl
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<TsConstructSignatureDecl> for TsTypeElement
impl From<TsConstructSignatureDecl> for TsTypeElement
Source§fn from(v: TsConstructSignatureDecl) -> Self
fn from(v: TsConstructSignatureDecl) -> Self
Converts to this type from the input type.
Source§impl Hash for TsConstructSignatureDecl
impl Hash for TsConstructSignatureDecl
Source§impl PartialEq for TsConstructSignatureDecl
impl PartialEq for TsConstructSignatureDecl
Source§impl Serialize for TsConstructSignatureDecl
impl Serialize for TsConstructSignatureDecl
Source§impl Spanned for TsConstructSignatureDecl
impl Spanned for TsConstructSignatureDecl
impl Eq for TsConstructSignatureDecl
impl StructuralPartialEq for TsConstructSignatureDecl
Auto Trait Implementations§
impl Freeze for TsConstructSignatureDecl
impl RefUnwindSafe for TsConstructSignatureDecl
impl Send for TsConstructSignatureDecl
impl Sync for TsConstructSignatureDecl
impl Unpin for TsConstructSignatureDecl
impl UnwindSafe for TsConstructSignatureDecl
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SpanExt for Twhere
T: Spanned,
impl<T> SpanExt for Twhere
T: Spanned,
fn is_synthesized(&self) -> bool
fn starts_on_new_line(&self, format: ListFormat) -> bool
Source§fn comment_range(&self) -> Span
fn comment_range(&self) -> Span
Gets a custom text range to use when emitting comments.