Struct stc_ts_types::ConstructorSignature
source · [−]pub struct ConstructorSignature {
pub span: Span,
pub accessibility: Option<Accessibility>,
pub params: Vec<FnParam>,
pub ret_ty: Option<Box<Type>>,
pub type_params: Option<TypeParamDecl>,
}
Fields
span: Span
accessibility: Option<Accessibility>
Only for synthesized type elements.
params: Vec<FnParam>
ret_ty: Option<Box<Type>>
type_params: Option<TypeParamDecl>
Trait Implementations
sourceimpl Clone for ConstructorSignature
impl Clone for ConstructorSignature
sourcefn clone(&self) -> ConstructorSignature
fn clone(&self) -> ConstructorSignature
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ConstructorSignature
impl Debug for ConstructorSignature
sourceimpl<'de> Deserialize<'de> for ConstructorSignature
impl<'de> Deserialize<'de> for ConstructorSignature
sourcefn 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
sourceimpl EqIgnoreSpan for ConstructorSignature
impl EqIgnoreSpan for ConstructorSignature
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl<V> FoldWith<V> for ConstructorSignaturewhere
V: ?Sized,
impl<V> FoldWith<V> for ConstructorSignaturewhere
V: ?Sized,
sourceimpl From<ConstructorSignature> for ClassMember
impl From<ConstructorSignature> for ClassMember
sourcefn from(v: ConstructorSignature) -> Self
fn from(v: ConstructorSignature) -> Self
Converts to this type from the input type.
sourceimpl From<ConstructorSignature> for TypeElement
impl From<ConstructorSignature> for TypeElement
sourcefn from(v: ConstructorSignature) -> Self
fn from(v: ConstructorSignature) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ConstructorSignature> for ConstructorSignature
impl PartialEq<ConstructorSignature> for ConstructorSignature
sourcefn eq(&self, other: &ConstructorSignature) -> bool
fn eq(&self, other: &ConstructorSignature) -> bool
sourceimpl Serialize for ConstructorSignature
impl Serialize for ConstructorSignature
sourceimpl Spanned for ConstructorSignature
impl Spanned for ConstructorSignature
sourceimpl TypeEq for ConstructorSignature
impl TypeEq for ConstructorSignature
sourceimpl<V> VisitMutWith<V> for ConstructorSignaturewhere
V: ?Sized,
impl<V> VisitMutWith<V> for ConstructorSignaturewhere
V: ?Sized,
fn visit_mut_children_with(&mut self, _visitor: &mut V)
fn visit_mut_with(&mut self, visitor: &mut V)where
V: VisitMut<Self>,
sourceimpl<V> VisitWith<V> for ConstructorSignaturewhere
V: ?Sized,
impl<V> VisitWith<V> for ConstructorSignaturewhere
V: ?Sized,
fn visit_children_with(&self, _visitor: &mut V)
fn visit_with(&self, visitor: &mut V)where
V: Visit<Self>,
impl StructuralPartialEq for ConstructorSignature
impl Visitable for ConstructorSignature
Auto Trait Implementations
impl RefUnwindSafe for ConstructorSignature
impl Send for ConstructorSignature
impl Sync for ConstructorSignature
impl Unpin for ConstructorSignature
impl UnwindSafe for ConstructorSignature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<R, N> IntoRNode<R> for Nwhere
R: RNode<Orig = N>,
impl<R, N> IntoRNode<R> for Nwhere
R: RNode<Orig = N>,
fn into_rnode(self, g: &mut NodeIdGenerator) -> R
sourceimpl<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
sourcefn comment_range(&self) -> Span
fn comment_range(&self) -> Span
Gets a custom text range to use when emitting comments.