pub enum PairKey<'tree> {
ComputedPropertyName(Box<ComputedPropertyName<'tree>>),
Number(Box<Number<'tree>>),
PrivatePropertyIdentifier(Box<PrivatePropertyIdentifier<'tree>>),
PropertyIdentifier(Box<PropertyIdentifier<'tree>>),
String(Box<String<'tree>>),
}Variants§
ComputedPropertyName(Box<ComputedPropertyName<'tree>>)
Number(Box<Number<'tree>>)
PrivatePropertyIdentifier(Box<PrivatePropertyIdentifier<'tree>>)
PropertyIdentifier(Box<PropertyIdentifier<'tree>>)
String(Box<String<'tree>>)
Trait Implementations§
Auto Trait Implementations§
impl<'tree> Freeze for PairKey<'tree>
impl<'tree> RefUnwindSafe for PairKey<'tree>
impl<'tree> Send for PairKey<'tree>
impl<'tree> Sync for PairKey<'tree>
impl<'tree> Unpin for PairKey<'tree>
impl<'tree> UnsafeUnpin for PairKey<'tree>
impl<'tree> UnwindSafe for PairKey<'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