pub enum ObjectMemberType {
Valued {
key: ClassOrObjectMemberKey,
value: ClassOrObjectMemberValue,
},
Shorthand {
identifier: Node,
},
Rest {
value: Node,
},
}
Variants§
Trait Implementations§
Source§impl Debug for ObjectMemberType
impl Debug for ObjectMemberType
Auto Trait Implementations§
impl Freeze for ObjectMemberType
impl !RefUnwindSafe for ObjectMemberType
impl !Send for ObjectMemberType
impl !Sync for ObjectMemberType
impl Unpin for ObjectMemberType
impl !UnwindSafe for ObjectMemberType
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