pub struct JSXNamespacedName {
pub ns: Ident,
pub name: Ident,
}
Expand description
XML-based namespace syntax:
Fields§
§ns: Ident
§name: Ident
Trait Implementations§
Source§impl Clone for JSXNamespacedName
impl Clone for JSXNamespacedName
Source§fn clone(&self) -> JSXNamespacedName
fn clone(&self) -> JSXNamespacedName
Returns a copy 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 JSXNamespacedName
impl Debug for JSXNamespacedName
Source§impl<'de> Deserialize<'de> for JSXNamespacedName
impl<'de> Deserialize<'de> for JSXNamespacedName
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
Source§impl EqIgnoreSpan for JSXNamespacedName
impl EqIgnoreSpan for JSXNamespacedName
fn eq_ignore_span(&self, other: &Self) -> bool
Source§impl From<JSXNamespacedName> for Expr
impl From<JSXNamespacedName> for Expr
Source§fn from(v: JSXNamespacedName) -> Self
fn from(v: JSXNamespacedName) -> Self
Converts to this type from the input type.
Source§impl From<JSXNamespacedName> for JSXAttrName
impl From<JSXNamespacedName> for JSXAttrName
Source§fn from(v: JSXNamespacedName) -> Self
fn from(v: JSXNamespacedName) -> Self
Converts to this type from the input type.
Source§impl From<JSXNamespacedName> for JSXElementName
impl From<JSXNamespacedName> for JSXElementName
Source§fn from(v: JSXNamespacedName) -> Self
fn from(v: JSXNamespacedName) -> Self
Converts to this type from the input type.
Source§impl From<JSXNamespacedName> for PatOrExpr
impl From<JSXNamespacedName> for PatOrExpr
Source§fn from(src: JSXNamespacedName) -> PatOrExpr
fn from(src: JSXNamespacedName) -> PatOrExpr
Converts to this type from the input type.
Source§impl Hash for JSXNamespacedName
impl Hash for JSXNamespacedName
Source§impl PartialEq for JSXNamespacedName
impl PartialEq for JSXNamespacedName
Source§impl Serialize for JSXNamespacedName
impl Serialize for JSXNamespacedName
Source§impl Spanned for JSXNamespacedName
impl Spanned for JSXNamespacedName
impl Eq for JSXNamespacedName
impl StructuralPartialEq for JSXNamespacedName
Auto Trait Implementations§
impl Freeze for JSXNamespacedName
impl RefUnwindSafe for JSXNamespacedName
impl Send for JSXNamespacedName
impl Sync for JSXNamespacedName
impl Unpin for JSXNamespacedName
impl UnwindSafe for JSXNamespacedName
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> SpanExt for Twhere
T: Spanned,
impl<T> SpanExt for Twhere
T: Spanned,
fn is_synthesized(&self) -> bool
fn starts_on_new_line(&self, format: ListFormat) -> bool
Source§fn comment_range(&self) -> Span
fn comment_range(&self) -> Span
Gets a custom text range to use when emitting comments.