pub enum JSXAttributeValue {
StringLiteral(StringLiteral),
JSXExpressionContainer(JSXExpressionContainer),
JSXElement(Box<JSXElement>),
JSXFragment(JSXFragment),
}Variants§
StringLiteral(StringLiteral)
JSXExpressionContainer(JSXExpressionContainer)
JSXElement(Box<JSXElement>)
JSXFragment(JSXFragment)
Trait Implementations§
Source§impl Clone for JSXAttributeValue
impl Clone for JSXAttributeValue
Source§fn clone(&self) -> JSXAttributeValue
fn clone(&self) -> JSXAttributeValue
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 moreSource§impl Debug for JSXAttributeValue
impl Debug for JSXAttributeValue
Auto Trait Implementations§
impl Freeze for JSXAttributeValue
impl RefUnwindSafe for JSXAttributeValue
impl Send for JSXAttributeValue
impl Sync for JSXAttributeValue
impl Unpin for JSXAttributeValue
impl UnsafeUnpin for JSXAttributeValue
impl UnwindSafe for JSXAttributeValue
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