pub enum PropertyNameKind {
Literal {
value: PropertyLiteral,
},
Computed {
value: Box<Type>,
},
}Variants§
Trait Implementations§
Source§impl Clone for PropertyNameKind
impl Clone for PropertyNameKind
Source§fn clone(&self) -> PropertyNameKind
fn clone(&self) -> PropertyNameKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PropertyNameKind
impl RefUnwindSafe for PropertyNameKind
impl Send for PropertyNameKind
impl Sync for PropertyNameKind
impl Unpin for PropertyNameKind
impl UnsafeUnpin for PropertyNameKind
impl UnwindSafe for PropertyNameKind
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