unindent
0.2.3
Unindent
Required Associated Types
Output
Required Methods
unindent
Implementations on Foreign Types
&'a T
String
[u8]
str
Implementors
In crate unindent
unindent
Trait
Unindent
Copy item path
Source
pub trait Unindent { type
Output
; // Required method fn
unindent
(&self) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
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
§