[][src]Struct conjure_http::query_params::values::Values

pub struct Values(_);

A data structure storing the values for a specific query parameter.

Methods

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.

Important traits for Iter<'a>
pub fn iter(&self) -> Iter[src]

Returns an iterator over the values.

Trait Implementations

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?

impl Clone for Values[src]

impl Default for Values[src]

impl Eq for Values[src]

impl PartialEq<Values> for Values[src]

impl Debug for Values[src]

impl Index<usize> for Values[src]

type Output = str

The returned type after indexing.

impl StructuralPartialEq for Values[src]

impl StructuralEq for Values[src]

Auto Trait Implementations

impl Send for Values

impl Sync for Values

impl Unpin for Values

impl UnwindSafe for Values

impl RefUnwindSafe for Values

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]