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§

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

fn finish(self) -> Self::Finished

Implementations on Foreign Types§

§

impl Target for String

§

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

§

fn finish(self) -> String

§

type Finished = String

§

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

§

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

§

fn finish(self) -> &'a mut String

§

type Finished = &'a mut String

Implementors§

source§

impl<'a> Target for UrlQuery<'a>

§

type Finished = &'a mut Url