pub struct TsTypeParamInstantiation {
pub span: Span,
pub params: Vec<Box<TsType>>,
}
Fields§
§span: Span
§params: Vec<Box<TsType>>
Trait Implementations§
Source§impl AstNode for TsTypeParamInstantiation
impl AstNode for TsTypeParamInstantiation
Source§impl Clone for TsTypeParamInstantiation
impl Clone for TsTypeParamInstantiation
Source§fn clone(&self) -> TsTypeParamInstantiation
fn clone(&self) -> TsTypeParamInstantiation
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 TsTypeParamInstantiation
impl Debug for TsTypeParamInstantiation
Source§impl<'de> Deserialize<'de> for TsTypeParamInstantiation
impl<'de> Deserialize<'de> for TsTypeParamInstantiation
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 TsTypeParamInstantiation
impl EqIgnoreSpan for TsTypeParamInstantiation
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl Hash for TsTypeParamInstantiation
impl Hash for TsTypeParamInstantiation
Source§impl PartialEq for TsTypeParamInstantiation
impl PartialEq for TsTypeParamInstantiation
Source§impl Serialize for TsTypeParamInstantiation
impl Serialize for TsTypeParamInstantiation
Source§impl Spanned for TsTypeParamInstantiation
impl Spanned for TsTypeParamInstantiation
impl Eq for TsTypeParamInstantiation
impl StructuralPartialEq for TsTypeParamInstantiation
Auto Trait Implementations§
impl Freeze for TsTypeParamInstantiation
impl RefUnwindSafe for TsTypeParamInstantiation
impl Send for TsTypeParamInstantiation
impl Sync for TsTypeParamInstantiation
impl Unpin for TsTypeParamInstantiation
impl UnwindSafe for TsTypeParamInstantiation
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.