[][src]Struct swc_ecma_ast::ClassProperty

pub struct ClassProperty<K> {
    pub span: Span,
    pub key: K,
    pub value: Option<Box<Expr>>,
    pub type_ann: Option<TsTypeAnn>,
    pub is_static: bool,
    pub decorators: Vec<Decorator>,
    pub computed: bool,
    pub accessibility: Option<Accessibility>,
    pub is_abstract: bool,
    pub is_optional: bool,
    pub readonly: bool,
    pub definite: bool,
}

Fields

span: Spankey: Kvalue: Option<Box<Expr>>type_ann: Option<TsTypeAnn>is_static: booldecorators: Vec<Decorator>computed: boolaccessibility: Option<Accessibility>

Typescript extension.

is_abstract: bool

Typescript extension.

is_optional: boolreadonly: booldefinite: bool

Trait Implementations

impl<K: PartialEq> PartialEq<ClassProperty<K>> for ClassProperty<K>[src]

impl<K: Clone> Clone for ClassProperty<K>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<ClassProperty<Box<Expr>>> for ClassMember[src]

impl From<ClassProperty<PrivateName>> for ClassMember[src]

impl<K: Debug> Debug for ClassProperty<K>[src]

impl<K> Serialize for ClassProperty<K> where
    K: Serialize
[src]

impl<'de, K> Deserialize<'de> for ClassProperty<K> where
    K: Deserialize<'de>, 
[src]

impl<K> Spanned for ClassProperty<K>[src]

Auto Trait Implementations

impl<K> Send for ClassProperty<K> where
    K: Send

impl<K> Sync for ClassProperty<K> where
    K: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T