pub struct PropertyPromotionParameter<'tree> {
pub span: Span,
pub attributes: Option<AttributeList<'tree>>,
pub default_value: Option<Expression<'tree>>,
pub name: PropertyPromotionParameterName<'tree>,
pub readonly: Option<ReadonlyModifier<'tree>>,
pub type: Option<Type<'tree>>,
pub visibility: VisibilityModifier<'tree>,
pub children: Option<PropertyHookList<'tree>>,
}Fields§
§span: Span§attributes: Option<AttributeList<'tree>>§default_value: Option<Expression<'tree>>§name: PropertyPromotionParameterName<'tree>§readonly: Option<ReadonlyModifier<'tree>>§type: Option<Type<'tree>>§visibility: VisibilityModifier<'tree>§children: Option<PropertyHookList<'tree>>Trait Implementations§
Source§impl<'tree> Clone for PropertyPromotionParameter<'tree>
impl<'tree> Clone for PropertyPromotionParameter<'tree>
Source§fn clone(&self) -> PropertyPromotionParameter<'tree>
fn clone(&self) -> PropertyPromotionParameter<'tree>
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<'tree> Debug for PropertyPromotionParameter<'tree>
impl<'tree> Debug for PropertyPromotionParameter<'tree>
Source§impl<'tree> FromNode<'tree> for PropertyPromotionParameter<'tree>
impl<'tree> FromNode<'tree> for PropertyPromotionParameter<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PropertyPromotionParameter<'tree>
impl<'tree> RefUnwindSafe for PropertyPromotionParameter<'tree>
impl<'tree> Send for PropertyPromotionParameter<'tree>
impl<'tree> Sync for PropertyPromotionParameter<'tree>
impl<'tree> Unpin for PropertyPromotionParameter<'tree>
impl<'tree> UnsafeUnpin for PropertyPromotionParameter<'tree>
impl<'tree> UnwindSafe for PropertyPromotionParameter<'tree>
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