pub struct UserUrlQuery(/* private fields */);Implementations§
Source§impl UserUrlQuery
impl UserUrlQuery
pub const URL_QUERY_PARAM: &'static str = "q"
pub fn into_query(self) -> UrlQueryParams
Source§impl UserUrlQuery
impl UserUrlQuery
pub fn new() -> Self
pub fn with_capacity(capacity: usize) -> Self
pub fn capacity(&self) -> usize
pub fn clear(&mut self)
pub fn insert(&mut self, field: impl AsRef<str>)
pub fn is_empty(&self) -> bool
pub fn into_vec(self) -> Vec<String>
pub fn len(&self) -> usize
pub fn remove(&mut self, field: impl AsRef<str>)
pub fn reserve(&mut self, additional: usize)
pub fn shrink_to_fit(&mut self)
Trait Implementations§
Source§impl Clone for UserUrlQuery
impl Clone for UserUrlQuery
Source§fn clone(&self) -> UserUrlQuery
fn clone(&self) -> UserUrlQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UserUrlQuery
impl Debug for UserUrlQuery
Source§impl Default for UserUrlQuery
impl Default for UserUrlQuery
Source§fn default() -> UserUrlQuery
fn default() -> UserUrlQuery
Returns the “default value” for a type. Read more
Source§impl From<&[&str]> for UserUrlQuery
impl From<&[&str]> for UserUrlQuery
Source§impl From<&[UserId]> for UserUrlQuery
impl From<&[UserId]> for UserUrlQuery
Source§impl From<&[i32]> for UserUrlQuery
impl From<&[i32]> for UserUrlQuery
Source§impl From<&[u16]> for UserUrlQuery
impl From<&[u16]> for UserUrlQuery
Source§impl From<&[u32]> for UserUrlQuery
impl From<&[u32]> for UserUrlQuery
Source§impl From<&[u64]> for UserUrlQuery
impl From<&[u64]> for UserUrlQuery
Source§impl From<&[u8]> for UserUrlQuery
impl From<&[u8]> for UserUrlQuery
Source§impl From<&String> for UserUrlQuery
impl From<&String> for UserUrlQuery
Source§impl From<&UserId> for UserUrlQuery
impl From<&UserId> for UserUrlQuery
Source§impl From<&str> for UserUrlQuery
impl From<&str> for UserUrlQuery
Source§impl From<RangeInclusive<i32>> for UserUrlQuery
impl From<RangeInclusive<i32>> for UserUrlQuery
Source§fn from(range: RangeInclusive<i32>) -> Self
fn from(range: RangeInclusive<i32>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<u16>> for UserUrlQuery
impl From<RangeInclusive<u16>> for UserUrlQuery
Source§fn from(range: RangeInclusive<u16>) -> Self
fn from(range: RangeInclusive<u16>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<u32>> for UserUrlQuery
impl From<RangeInclusive<u32>> for UserUrlQuery
Source§fn from(range: RangeInclusive<u32>) -> Self
fn from(range: RangeInclusive<u32>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<u64>> for UserUrlQuery
impl From<RangeInclusive<u64>> for UserUrlQuery
Source§fn from(range: RangeInclusive<u64>) -> Self
fn from(range: RangeInclusive<u64>) -> Self
Converts to this type from the input type.
Source§impl From<RangeInclusive<u8>> for UserUrlQuery
impl From<RangeInclusive<u8>> for UserUrlQuery
Source§fn from(range: RangeInclusive<u8>) -> Self
fn from(range: RangeInclusive<u8>) -> Self
Converts to this type from the input type.
Source§impl From<String> for UserUrlQuery
impl From<String> for UserUrlQuery
Source§impl From<UserId> for UserUrlQuery
impl From<UserId> for UserUrlQuery
Source§impl From<i32> for UserUrlQuery
impl From<i32> for UserUrlQuery
Source§impl From<u16> for UserUrlQuery
impl From<u16> for UserUrlQuery
Source§impl From<u32> for UserUrlQuery
impl From<u32> for UserUrlQuery
Source§impl From<u64> for UserUrlQuery
impl From<u64> for UserUrlQuery
Auto Trait Implementations§
impl Freeze for UserUrlQuery
impl RefUnwindSafe for UserUrlQuery
impl Send for UserUrlQuery
impl Sync for UserUrlQuery
impl Unpin for UserUrlQuery
impl UnsafeUnpin for UserUrlQuery
impl UnwindSafe for UserUrlQuery
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more