Trait form_urlencoded::Target

source ·
pub trait Target {
    type Finished;

    // Required methods
    fn as_mut_string(&mut self) -> &mut String;
    fn finish(self) -> Self::Finished;
}

Required Associated Types§

Required Methods§

source

fn as_mut_string(&mut self) -> &mut String

source

fn finish(self) -> Self::Finished

Implementations on Foreign Types§

source§

impl Target for String

source§

fn as_mut_string(&mut self) -> &mut String

source§

fn finish(self) -> Self

§

type Finished = String

source§

impl<'a> Target for &'a mut String

source§

fn as_mut_string(&mut self) -> &mut String

source§

fn finish(self) -> Self

§

type Finished = &'a mut String

Implementors§