[−][src]Struct conjure_http::query_params::Values
A data structure storing the values for a specific query parameter.
Implementations
impl Values[src]
pub fn is_empty(&self) -> bool[src]
Returns true if there are no values corresponding to the key.
pub fn len(&self) -> usize[src]
Returns the number of values.
pub fn iter(&self) -> Iter<'_>ⓘ[src]
Returns an iterator over the values.
Trait Implementations
impl Clone for Values[src]
impl Debug for Values[src]
impl Default for Values[src]
impl Eq for Values[src]
impl Index<usize> for Values[src]
impl<'a> IntoIterator for &'a Values[src]
type Item = &'a str
The type of the elements being iterated over.
type IntoIter = Iter<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Iter<'a>ⓘ[src]
impl PartialEq<Values> for Values[src]
impl StructuralEq for Values[src]
impl StructuralPartialEq for Values[src]
Auto Trait Implementations
impl RefUnwindSafe for Values[src]
impl Send for Values[src]
impl Sync for Values[src]
impl Unpin for Values[src]
impl UnwindSafe for Values[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut Tⓘ[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,