pub(crate) struct UrlPartsBuilder {
buf: String,
}
Expand description
A builder that allows efficiently and easily constructing the part of a URL
after the domain: nightly/core/str/struct.Bytes.html
.
This type is a wrapper around the final String
buffer,
but its API is like that of a Vec
of URL components.
Fields§
§buf: String
Implementations§
source§impl UrlPartsBuilder
impl UrlPartsBuilder
sourcefn with_capacity_bytes(count: usize) -> Self
fn with_capacity_bytes(count: usize) -> Self
Create an empty buffer with capacity for the specified number of bytes.
sourcepub(crate) fn singleton(part: &str) -> Self
pub(crate) fn singleton(part: &str) -> Self
sourcepub(crate) fn push_fmt(&mut self, args: Arguments<'_>)
pub(crate) fn push_fmt(&mut self, args: Arguments<'_>)
Push a component onto the buffer, using format!
’s formatting syntax.
§Examples
Basic usage (equivalent to the example for UrlPartsBuilder::push
):
ⓘ
let mut builder = UrlPartsBuilder::new();
builder.push("core");
builder.push("str");
builder.push_fmt(format_args!("{}.{}.html", "struct", "Bytes"));
assert_eq!(builder.finish(), "core/str/struct.Bytes.html");
sourcepub(crate) fn push_front(&mut self, part: &str)
pub(crate) fn push_front(&mut self, part: &str)
Trait Implementations§
source§impl Debug for UrlPartsBuilder
impl Debug for UrlPartsBuilder
source§impl<'a> Extend<&'a str> for UrlPartsBuilder
impl<'a> Extend<&'a str> for UrlPartsBuilder
source§fn extend<T: IntoIterator<Item = &'a str>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = &'a str>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl Extend<Symbol> for UrlPartsBuilder
impl Extend<Symbol> for UrlPartsBuilder
source§fn extend<T: IntoIterator<Item = Symbol>>(&mut self, iter: T)
fn extend<T: IntoIterator<Item = Symbol>>(&mut self, iter: T)
Extends a collection with the contents of an iterator. Read more
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
🔬This is a nightly-only experimental API. (
extend_one
)Extends a collection with exactly one element.
source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
🔬This is a nightly-only experimental API. (
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
source§impl<'a> FromIterator<&'a str> for UrlPartsBuilder
impl<'a> FromIterator<&'a str> for UrlPartsBuilder
source§impl FromIterator<Symbol> for UrlPartsBuilder
impl FromIterator<Symbol> for UrlPartsBuilder
Auto Trait Implementations§
impl Freeze for UrlPartsBuilder
impl RefUnwindSafe for UrlPartsBuilder
impl Send for UrlPartsBuilder
impl Sync for UrlPartsBuilder
impl Unpin for UrlPartsBuilder
impl UnwindSafe for UrlPartsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes