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>,
}Fields§
§decorators: Vec<Decorator>§is_declare: bool§name: String§type_params: Vec<TypeParameter>§ty: TypeAnnotation§span: Range<usize>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 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