pub struct Url<'s> {
pub name: Ident<'s>,
pub value: Option<UrlValue<'s>>,
pub modifiers: Vec<UrlModifier<'s>>,
pub span: Span,
}Fields§
§name: Ident<'s>§value: Option<UrlValue<'s>>§modifiers: Vec<UrlModifier<'s>>§span: SpanTrait Implementations§
Source§impl<'s> SpanIgnoredEq for Url<'s>
impl<'s> SpanIgnoredEq for Url<'s>
Source§fn span_ignored_eq(&self, other: &Self) -> bool
fn span_ignored_eq(&self, other: &Self) -> bool
Compare equality of two AST nodes without respecting their spans.
impl<'s> StructuralPartialEq for Url<'s>
Auto Trait Implementations§
impl<'s> Freeze for Url<'s>
impl<'s> RefUnwindSafe for Url<'s>
impl<'s> Send for Url<'s>
impl<'s> Sync for Url<'s>
impl<'s> Unpin for Url<'s>
impl<'s> UnwindSafe for Url<'s>
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