pub struct TypeAliasDeclaration {
pub decorators: Vec<Decorator>,
pub is_declare: bool,
pub name: String,
pub type_params: Vec<TypeParameter>,
pub ty: TypeAnnotation,
pub span: Range<usize>,
}Expand description
Represents a type alias declaration.
Fields§
§decorators: Vec<Decorator>Decorators associated with the declaration.
is_declare: boolWhether the declaration is declared with declare.
name: StringThe name of the type alias.
type_params: Vec<TypeParameter>Type parameters of the type alias.
ty: TypeAnnotationThe type being aliased.
span: Range<usize>Source span of the declaration.
Trait Implementations§
Source§impl Clone for TypeAliasDeclaration
impl Clone for TypeAliasDeclaration
Source§fn clone(&self) -> TypeAliasDeclaration
fn clone(&self) -> TypeAliasDeclaration
Returns a duplicate 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 TypeAliasDeclaration
impl Debug for TypeAliasDeclaration
Source§impl<'de> Deserialize<'de> for TypeAliasDeclaration
impl<'de> Deserialize<'de> for TypeAliasDeclaration
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
Auto Trait Implementations§
impl Freeze for TypeAliasDeclaration
impl RefUnwindSafe for TypeAliasDeclaration
impl Send for TypeAliasDeclaration
impl Sync for TypeAliasDeclaration
impl Unpin for TypeAliasDeclaration
impl UnsafeUnpin for TypeAliasDeclaration
impl UnwindSafe for TypeAliasDeclaration
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