pub struct JsxClosingElement {
pub name: JsxTagName,
pub span: Range<usize>,
}Expand description
Represents a JSX closing element tag.
Fields§
§name: JsxTagNameName of the tag.
span: Range<usize>Source span of the closing element.
Trait Implementations§
Source§impl Clone for JsxClosingElement
impl Clone for JsxClosingElement
Source§fn clone(&self) -> JsxClosingElement
fn clone(&self) -> JsxClosingElement
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 JsxClosingElement
impl Debug for JsxClosingElement
Source§impl<'de> Deserialize<'de> for JsxClosingElement
impl<'de> Deserialize<'de> for JsxClosingElement
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 JsxClosingElement
impl RefUnwindSafe for JsxClosingElement
impl Send for JsxClosingElement
impl Sync for JsxClosingElement
impl Unpin for JsxClosingElement
impl UnsafeUnpin for JsxClosingElement
impl UnwindSafe for JsxClosingElement
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