unindent

Trait Unindent

Source
pub trait Unindent {
    type Output;

    // Required method
    fn unindent(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn unindent(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl Unindent for str

Source§

type Output = String

Source§

fn unindent(&self) -> Self::Output

Source§

impl Unindent for String

Source§

type Output = String

Source§

fn unindent(&self) -> Self::Output

Source§

impl Unindent for [u8]

Source§

type Output = Vec<u8>

Source§

fn unindent(&self) -> Self::Output

Source§

impl<'a, T: ?Sized + Unindent> Unindent for &'a T

Source§

type Output = <T as Unindent>::Output

Source§

fn unindent(&self) -> Self::Output

Implementors§