form_urlencoded

Trait 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§

type Finished = String

Source§

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

Source§

fn finish(self) -> Self

Source§

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

Source§

type Finished = &'a mut String

Source§

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

Source§

fn finish(self) -> Self

Implementors§