[][src]Struct threescalers::extensions::Extensions

pub struct Extensions(_);

Methods

impl Extensions[src]

pub fn new() -> Self[src]

pub fn insert<S: Into<String>>(&mut self, param: S, value: S) -> Option<String>[src]

pub fn remove<S: AsRef<str>>(&mut self, param: S) -> Option<String>[src]

pub fn iter(&self) -> Iter<String, String>[src]

pub fn iter_mut(&mut self) -> IterMut<String, String>[src]

pub fn into_inner(self) -> HashMap<String, String>[src]

Trait Implementations

impl Default for Extensions[src]

impl Clone for Extensions[src]

impl Extend<(String, String)> for Extensions[src]

impl<'a> IntoIterator for &'a Extensions[src]

type IntoIter = Iter<'a, String, String>

Which kind of iterator are we turning this into?

type Item = (&'a String, &'a String)

The type of the elements being iterated over.

impl<'a> IntoIterator for &'a mut Extensions[src]

type IntoIter = IterMut<'a, String, String>

Which kind of iterator are we turning this into?

type Item = (&'a String, &'a mut String)

The type of the elements being iterated over.

impl IntoIterator for Extensions[src]

type IntoIter = IntoIter<String, String>

Which kind of iterator are we turning this into?

type Item = (String, String)

The type of the elements being iterated over.

impl From<HashMap<String, String, RandomState>> for Extensions[src]

impl ToString for Extensions[src]

impl Debug for Extensions[src]

impl FromIterator<(String, String)> for Extensions[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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