htpp

Struct Url

Source
pub struct Url<'a, 'queries> {
    pub path: &'a str,
    pub query_params: Option<&'queries [QueryParam<'a>]>,
}
Expand description

The path and query parameters part of an HTTP URL

Fields§

§path: &'a str

The path part for the URL

§query_params: Option<&'queries [QueryParam<'a>]>

The query parameters part for the URL

Implementations§

Source§

impl<'a, 'queries> Url<'a, 'queries>

Source

pub fn new( path: &'a str, query_params: Option<&'queries [QueryParam<'a>]>, ) -> Url<'a, 'queries>

Construct a new Url from its parts.

Source

pub fn parse( slice: &'a [u8], queries_buf: &'queries mut [QueryParam<'a>], ) -> Result<Url<'a, 'queries>, UrlError>

Parses the bytes of an HTTP URL into a Url The URL you parse must be valid UTF-8 and must be stripped of the leading protocol and authority parts or an Err(UrlError::Path) is returned If you pass an empty queries_buf, it will not parse query parameters If there is more query parameters than the length of the passed queries_buf, an Err(UrlError::TooManyQueryParams) is returned

Trait Implementations§

Source§

impl<'a, 'queries> Clone for Url<'a, 'queries>

Source§

fn clone(&self) -> Url<'a, 'queries>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, 'queries> Debug for Url<'a, 'queries>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, 'queries> Display for Url<'a, 'queries>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

The string representation of the URL

Source§

impl<'a, 'queries> PartialEq for Url<'a, 'queries>

Source§

fn eq(&self, other: &Url<'a, 'queries>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, 'queries> Eq for Url<'a, 'queries>

Source§

impl<'a, 'queries> StructuralPartialEq for Url<'a, 'queries>

Auto Trait Implementations§

§

impl<'a, 'queries> Freeze for Url<'a, 'queries>

§

impl<'a, 'queries> RefUnwindSafe for Url<'a, 'queries>

§

impl<'a, 'queries> Send for Url<'a, 'queries>

§

impl<'a, 'queries> Sync for Url<'a, 'queries>

§

impl<'a, 'queries> Unpin for Url<'a, 'queries>

§

impl<'a, 'queries> UnwindSafe for Url<'a, 'queries>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.