Struct stc_ts_file_analyzer::ty::MethodSignature
source · [−]pub struct MethodSignature {
pub span: Span,
pub accessibility: Option<Accessibility>,
pub readonly: bool,
pub key: Key,
pub optional: bool,
pub params: Vec<FnParam, Global>,
pub ret_ty: Option<Box<Type, Global>>,
pub type_params: Option<TypeParamDecl>,
pub metadata: TypeElMetadata,
}
Fields
span: Span
accessibility: Option<Accessibility>
Only for synthesized type elements.
readonly: bool
key: Key
optional: bool
params: Vec<FnParam, Global>
ret_ty: Option<Box<Type, Global>>
type_params: Option<TypeParamDecl>
metadata: TypeElMetadata
Trait Implementations
sourceimpl Clone for MethodSignature
impl Clone for MethodSignature
sourcefn clone(&self) -> MethodSignature
fn clone(&self) -> MethodSignature
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 MethodSignature
impl Debug for MethodSignature
sourceimpl<'de> Deserialize<'de> for MethodSignature
impl<'de> Deserialize<'de> for MethodSignature
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<MethodSignature, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<MethodSignature, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl EqIgnoreSpan for MethodSignature
impl EqIgnoreSpan for MethodSignature
fn eq_ignore_span(&self, other: &MethodSignature) -> bool
sourceimpl<V> FoldWith<V> for MethodSignaturewhere
V: ?Sized,
impl<V> FoldWith<V> for MethodSignaturewhere
V: ?Sized,
fn fold_children_with(self, _visitor: &mut V) -> MethodSignature
fn fold_with(self, visitor: &mut V) -> Selfwhere
V: Fold<Self>,
sourceimpl From<MethodSignature> for TypeElement
impl From<MethodSignature> for TypeElement
sourcefn from(v: MethodSignature) -> TypeElement
fn from(v: MethodSignature) -> TypeElement
Converts to this type from the input type.
sourceimpl PartialEq<MethodSignature> for MethodSignature
impl PartialEq<MethodSignature> for MethodSignature
sourcefn eq(&self, other: &MethodSignature) -> bool
fn eq(&self, other: &MethodSignature) -> bool
sourceimpl Serialize for MethodSignature
impl Serialize for MethodSignature
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl Spanned for MethodSignature
impl Spanned for MethodSignature
sourceimpl TypeEq for MethodSignature
impl TypeEq for MethodSignature
sourcefn type_eq(&self, other: &MethodSignature) -> bool
fn type_eq(&self, other: &MethodSignature) -> bool
Note: This method should return
true
for non-type values.sourceimpl<V> VisitMutWith<V> for MethodSignaturewhere
V: ?Sized,
impl<V> VisitMutWith<V> for MethodSignaturewhere
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 MethodSignaturewhere
V: ?Sized,
impl<V> VisitWith<V> for MethodSignaturewhere
V: ?Sized,
fn visit_children_with(&self, _visitor: &mut V)
fn visit_with(&self, visitor: &mut V)where
V: Visit<Self>,
impl StructuralPartialEq for MethodSignature
impl Visitable for MethodSignature
Auto Trait Implementations
impl RefUnwindSafe for MethodSignature
impl Send for MethodSignature
impl Sync for MethodSignature
impl Unpin for MethodSignature
impl UnwindSafe for MethodSignature
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> Pointable for T
impl<T> Pointable for T
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.