Trait Unindent
unindent
pub trait Unindent { type Output; fn unindent(&self) -> Self::Output; }
type Output
fn unindent(&self) -> Self::Output
impl Unindent for str
type Output = String
impl Unindent for String
impl Unindent for [u8]
type Output = Vec<u8>
impl<'a, T: ?Sized + Unindent> Unindent for &'a T
type Output = T::Output