[][src]Trait unindent::Unindent

pub trait Unindent {
    type Output;
    fn unindent(&self) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

impl Unindent for str[src]

type Output = String

impl Unindent for String[src]

type Output = String

impl Unindent for [u8][src]

type Output = Vec<u8>

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

type Output = T::Output

Loading content...

Implementors

Loading content...