☰
combine
3.8.1
StrLike
Required Methods
from_utf8
Implementations on Foreign Types
&'a [u8]
&'a str
String
Vec<u8>
[u8]
str
Implementors
In combine::parser::combinator
?
Trait
combine
::
parser
::
combinator
::
StrLike
source
·
[
−
]
pub trait StrLike: Sealed { // Required method fn
from_utf8
(&self) ->
Result
<&
str
,
()
>; }
Required Methods
§
source
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
Implementations on Foreign Types
§
source
§
impl
StrLike
for
str
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
source
§
impl
StrLike
for
String
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
source
§
impl
StrLike
for
Vec
<
u8
>
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
source
§
impl
StrLike
for [
u8
]
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
source
§
impl<'a>
StrLike
for &'a
str
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
source
§
impl<'a>
StrLike
for &'a [
u8
]
source
§
fn
from_utf8
(&self) ->
Result
<&
str
,
()
>
Implementors
§