pub struct UrlTemplate<'s> {
pub raw: &'s str,
pub escaped: bool,
pub tail: bool,
}Fields§
§raw: &'s str§escaped: bool§tail: boolTrait Implementations§
Source§impl<'s> Clone for UrlTemplate<'s>
impl<'s> Clone for UrlTemplate<'s>
Source§fn clone(&self) -> UrlTemplate<'s>
fn clone(&self) -> UrlTemplate<'s>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'s> Debug for UrlTemplate<'s>
impl<'s> Debug for UrlTemplate<'s>
Source§impl<'s> PartialEq for UrlTemplate<'s>
impl<'s> PartialEq for UrlTemplate<'s>
Source§fn eq(&self, other: &UrlTemplate<'s>) -> bool
fn eq(&self, other: &UrlTemplate<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for UrlTemplate<'s>
Auto Trait Implementations§
impl<'s> Freeze for UrlTemplate<'s>
impl<'s> RefUnwindSafe for UrlTemplate<'s>
impl<'s> Send for UrlTemplate<'s>
impl<'s> Sync for UrlTemplate<'s>
impl<'s> Unpin for UrlTemplate<'s>
impl<'s> UnsafeUnpin for UrlTemplate<'s>
impl<'s> UnwindSafe for UrlTemplate<'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