pub struct PropertyData<V> {
pub meta: Meta,
pub key: Box<ExpressionType>,
pub value: V,
pub kind: PropertyKind,
pub method: bool,
pub shorthand: bool,
pub computed: bool,
}Fields§
§meta: Meta§key: Box<ExpressionType>§value: V§kind: PropertyKind§method: bool§shorthand: bool§computed: boolTrait Implementations§
Source§impl<V: Debug> Debug for PropertyData<V>
impl<V: Debug> Debug for PropertyData<V>
Source§impl HasMeta for PropertyData<Box<ExpressionType>>
impl HasMeta for PropertyData<Box<ExpressionType>>
Source§impl HasMeta for PropertyData<Box<PatternType>>
impl HasMeta for PropertyData<Box<PatternType>>
Auto Trait Implementations§
impl<V> Freeze for PropertyData<V>where
V: Freeze,
impl<V> RefUnwindSafe for PropertyData<V>where
V: RefUnwindSafe,
impl<V> !Send for PropertyData<V>
impl<V> !Sync for PropertyData<V>
impl<V> Unpin for PropertyData<V>where
V: Unpin,
impl<V> UnwindSafe for PropertyData<V>where
V: UnwindSafe,
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