pub struct JsxFragmentData {
pub opening_fragment: NodeIndex,
pub children: NodeList,
pub closing_fragment: NodeIndex,
}Expand description
Data for JSX fragments
Fields§
§opening_fragment: NodeIndex§children: NodeList§closing_fragment: NodeIndexTrait Implementations§
Source§impl Clone for JsxFragmentData
impl Clone for JsxFragmentData
Source§fn clone(&self) -> JsxFragmentData
fn clone(&self) -> JsxFragmentData
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 moreSource§impl Debug for JsxFragmentData
impl Debug for JsxFragmentData
Source§impl<'de> Deserialize<'de> for JsxFragmentData
impl<'de> Deserialize<'de> for JsxFragmentData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JsxFragmentData
impl RefUnwindSafe for JsxFragmentData
impl Send for JsxFragmentData
impl Sync for JsxFragmentData
impl Unpin for JsxFragmentData
impl UnsafeUnpin for JsxFragmentData
impl UnwindSafe for JsxFragmentData
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