pub struct PathSegmentsMut<'a> { /* private fields */ }
Expand description

Exposes methods to manipulate the path of an URL that is not cannot-be-base.

The path always starts with a / slash, and is made of slash-separated segments. There is always at least one segment (which may be the empty string).

Examples:

use url::Url;

let mut url = Url::parse("mailto:[email protected]")?;
assert!(url.path_segments_mut().is_err());

let mut url = Url::parse("http://example.net/foo/index.html")?;
url.path_segments_mut().map_err(|_| "cannot be base")?
    .pop().push("img").push("2/100%.png");
assert_eq!(url.as_str(), "http://example.net/foo/img/2%2F100%25.png");

Implementations§

source§

impl<'a> PathSegmentsMut<'a>

source

pub fn clear(&mut self) -> &mut PathSegmentsMut<'a>

Remove all segments in the path, leaving the minimal url.path() == "/".

Returns &mut Self so that method calls can be chained.

Example:

use url::Url;

let mut url = Url::parse("https://github.com/servo/rust-url/")?;
url.path_segments_mut().map_err(|_| "cannot be base")?
    .clear().push("logout");
assert_eq!(url.as_str(), "https://github.com/logout");
source

pub fn pop_if_empty(&mut self) -> &mut PathSegmentsMut<'a>

Remove the last segment of this URL’s path if it is empty, except if these was only one segment to begin with.

In other words, remove one path trailing slash, if any, unless it is also the initial slash (so this does nothing if url.path() == "/").

Returns &mut Self so that method calls can be chained.

Example:

use url::Url;

let mut url = Url::parse("https://github.com/servo/rust-url/")?;
url.path_segments_mut().map_err(|_| "cannot be base")?
    .push("pulls");
assert_eq!(url.as_str(), "https://github.com/servo/rust-url//pulls");

let mut url = Url::parse("https://github.com/servo/rust-url/")?;
url.path_segments_mut().map_err(|_| "cannot be base")?
    .pop_if_empty().push("pulls");
assert_eq!(url.as_str(), "https://github.com/servo/rust-url/pulls");
source

pub fn pop(&mut self) -> &mut PathSegmentsMut<'a>

Remove the last segment of this URL’s path.

If the path only has one segment, make it empty such that url.path() == "/".

Returns &mut Self so that method calls can be chained.

source

pub fn push(&mut self, segment: &str) -> &mut PathSegmentsMut<'a>

Append the given segment at the end of this URL’s path.

See the documentation for .extend().

Returns &mut Self so that method calls can be chained.

source

pub fn extend<I>(&mut self, segments: I) -> &mut PathSegmentsMut<'a>
where I: IntoIterator, <I as IntoIterator>::Item: AsRef<str>,

Append each segment from the given iterator at the end of this URL’s path.

Each segment is percent-encoded like in Url::parse or Url::join, except that % and / characters are also encoded (to %25 and %2F). This is unlike Url::parse where % is left as-is in case some of the input is already percent-encoded, and / denotes a path segment separator.)

Note that, in addition to slashes between new segments, this always adds a slash between the existing path and the new segments except if the existing path is "/". If the previous last segment was empty (if the path had a trailing slash) the path after .extend() will contain two consecutive slashes. If that is undesired, call .pop_if_empty() first.

To obtain a behavior similar to Url::join, call .pop() unconditionally first.

Returns &mut Self so that method calls can be chained.

Example:

use url::Url;

let mut url = Url::parse("https://github.com/")?;
let org = "servo";
let repo = "rust-url";
let issue_number = "188";
url.path_segments_mut().map_err(|_| "cannot be base")?
    .extend(&[org, repo, "issues", issue_number]);
assert_eq!(url.as_str(), "https://github.com/servo/rust-url/issues/188");

In order to make sure that parsing the serialization of an URL gives the same URL, a segment is ignored if it is "." or "..":

use url::Url;

let mut url = Url::parse("https://github.com/servo")?;
url.path_segments_mut().map_err(|_| "cannot be base")?
    .extend(&["..", "rust-url", ".", "pulls"]);
assert_eq!(url.as_str(), "https://github.com/servo/rust-url/pulls");

Trait Implementations§

source§

impl<'a> Debug for PathSegmentsMut<'a>

source§

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

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

impl<'a> Drop for PathSegmentsMut<'a>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for PathSegmentsMut<'a>

§

impl<'a> Send for PathSegmentsMut<'a>

§

impl<'a> Sync for PathSegmentsMut<'a>

§

impl<'a> Unpin for PathSegmentsMut<'a>

§

impl<'a> !UnwindSafe for PathSegmentsMut<'a>

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
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more