pub enum JSXAttrValue {
String(String),
Expr(Expr),
Bool(bool),
}Variants§
Trait Implementations§
Source§impl Clone for JSXAttrValue
impl Clone for JSXAttrValue
Source§fn clone(&self) -> JSXAttrValue
fn clone(&self) -> JSXAttrValue
Returns a duplicate of the value. Read more
1.0.0 · 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 JSXAttrValue
impl RefUnwindSafe for JSXAttrValue
impl Send for JSXAttrValue
impl Sync for JSXAttrValue
impl Unpin for JSXAttrValue
impl UnwindSafe for JSXAttrValue
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