[][src]Struct iron::url::form_urlencoded::Serializer

pub struct Serializer<T> where
    T: Target
{ /* fields omitted */ }

Methods

impl<T> Serializer<T> where
    T: Target
[src]

pub fn new(target: T) -> Serializer<T>[src]

Create a new application/x-www-form-urlencoded serializer for the given target.

If the target is non-empty, its content is assumed to already be in application/x-www-form-urlencoded syntax.

pub fn for_suffix(target: T, start_position: usize) -> Serializer<T>[src]

Create a new application/x-www-form-urlencoded serializer for a suffix of the given target.

If that suffix is non-empty, its content is assumed to already be in application/x-www-form-urlencoded syntax.

pub fn clear(&mut self) -> &mut Serializer<T>[src]

Remove any existing name/value pair.

Panics if called after .finish().

pub fn custom_encoding_override<F>(&mut self, encode: F) -> &mut Serializer<T> where
    F: FnMut(&str) -> Cow<[u8]> + 'static, 
[src]

Set the character encoding to be used for names and values before percent-encoding.

pub fn append_pair(&mut self, name: &str, value: &str) -> &mut Serializer<T>[src]

Serialize and append a name/value pair.

Panics if called after .finish().

pub fn extend_pairs<I, K, V>(&mut self, iter: I) -> &mut Serializer<T> where
    I: IntoIterator,
    K: AsRef<str>,
    V: AsRef<str>,
    <I as IntoIterator>::Item: Borrow<(K, V)>, 
[src]

Serialize and append a number of name/value pairs.

This simply calls append_pair repeatedly. This can be more convenient, so the user doesn’t need to introduce a block to limit the scope of Serializer’s borrow of its string.

Panics if called after .finish().

pub fn finish(&mut self) -> <T as Target>::Finished[src]

If this serializer was constructed with a string, take and return that string.

use url::form_urlencoded;
let encoded: String = form_urlencoded::Serializer::new(String::new())
    .append_pair("foo", "bar & baz")
    .append_pair("saison", "Été+hiver")
    .finish();
assert_eq!(encoded, "foo=bar+%26+baz&saison=%C3%89t%C3%A9%2Bhiver");

Panics if called more than once.

Trait Implementations

impl<T> Debug for Serializer<T> where
    T: Target + Debug
[src]

Auto Trait Implementations

impl<T> !Sync for Serializer<T>

impl<T> !Send for Serializer<T>

impl<T> Unpin for Serializer<T> where
    T: Unpin

impl<T> !RefUnwindSafe for Serializer<T>

impl<T> !UnwindSafe for Serializer<T>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> UnsafeAny for T where
    T: Any