[][src]Struct swc_ecma_ast::JSXOpeningElement

pub struct JSXOpeningElement {
    pub name: JSXElementName,
    pub span: Span,
    pub attrs: Vec<JSXAttrOrSpread>,
    pub self_closing: bool,
    pub type_args: Option<TsTypeParamInstantiation>,
}

Fields

name: JSXElementNamespan: Spanattrs: Vec<JSXAttrOrSpread>self_closing: booltype_args: Option<TsTypeParamInstantiation>

Note: This field's name is differrent from one from babel because it is misleading

Trait Implementations

impl AstNode for JSXOpeningElement[src]

impl Clone for JSXOpeningElement[src]

impl Debug for JSXOpeningElement[src]

impl<'de> Deserialize<'de> for JSXOpeningElement[src]

impl PartialEq<JSXOpeningElement> for JSXOpeningElement[src]

impl Serialize for JSXOpeningElement[src]

impl Spanned for JSXOpeningElement[src]

impl StructuralPartialEq for JSXOpeningElement[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Erased for T

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.