Trait unindent::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

§

type Output = String

source§

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

source§

impl Unindent for String

§

type Output = String

source§

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

source§

impl Unindent for [u8]

§

type Output = Vec<u8>

source§

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

source§

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

§

type Output = <T as Unindent>::Output

source§

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

Implementors§