pub enum UrlValue<'s> {
Raw(UrlRaw<'s>),
SassInterpolated(SassInterpolatedUrl<'s>),
Str(InterpolableStr<'s>),
LessEscapedStr(LessEscapedStr<'s>),
}Variants§
Raw(UrlRaw<'s>)
SassInterpolated(SassInterpolatedUrl<'s>)
Str(InterpolableStr<'s>)
LessEscapedStr(LessEscapedStr<'s>)
Trait Implementations§
Source§impl<'s> PartialEq for UrlValue<'s>
impl<'s> PartialEq for UrlValue<'s>
impl<'s> StructuralPartialEq for UrlValue<'s>
Auto Trait Implementations§
impl<'s> Freeze for UrlValue<'s>
impl<'s> RefUnwindSafe for UrlValue<'s>
impl<'s> Send for UrlValue<'s>
impl<'s> Sync for UrlValue<'s>
impl<'s> Unpin for UrlValue<'s>
impl<'s> UnsafeUnpin for UrlValue<'s>
impl<'s> UnwindSafe for UrlValue<'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