[][src]Struct oauth1_request::serializer::urlencode::Urlencoder

pub struct Urlencoder { /* fields omitted */ }

A Serializer that produces a URI query or an x-www-form-urlencoded string from a request.

Implementations

impl Urlencoder[src]

pub fn form() -> Self[src]

Creates a Urlencoder that produces an x-www-form-urlencoded string.

pub fn query(uri: String) -> Self[src]

Creates a Urlencoder that appends a query part to the given URI.

Trait Implementations

impl Serializer for Urlencoder[src]

type Output = String

The type of the value produced by this serializer.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<S> SerializerExt for S where
    S: Serializer
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,