Struct rustdoc::html::url_parts_builder::UrlPartsBuilder
source · [−]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
sourceimpl 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");
Runsourcepub(crate) fn push_front(&mut self, part: &str)
pub(crate) fn push_front(&mut self, part: &str)
Trait Implementations
sourceimpl Debug for UrlPartsBuilder
impl Debug for UrlPartsBuilder
sourceimpl<'a> Extend<&'a str> for UrlPartsBuilder
impl<'a> Extend<&'a str> for UrlPartsBuilder
sourcefn 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
sourcefn 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.
sourcefn 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
sourceimpl Extend<Symbol> for UrlPartsBuilder
impl Extend<Symbol> for UrlPartsBuilder
sourcefn 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
sourcefn 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.
sourcefn 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
sourceimpl<'a> FromIterator<&'a str> for UrlPartsBuilder
impl<'a> FromIterator<&'a str> for UrlPartsBuilder
sourcefn from_iter<T: IntoIterator<Item = &'a str>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = &'a str>>(iter: T) -> Self
Creates a value from an iterator. Read more
sourceimpl FromIterator<Symbol> for UrlPartsBuilder
impl FromIterator<Symbol> for UrlPartsBuilder
sourcefn from_iter<T: IntoIterator<Item = Symbol>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = Symbol>>(iter: T) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations
impl RefUnwindSafe for UrlPartsBuilder
impl Send for UrlPartsBuilder
impl Sync for UrlPartsBuilder
impl Unpin for UrlPartsBuilder
impl UnwindSafe for UrlPartsBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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