combine
4.6.7
StrLike
Required Methods
from_utf8
Implementations on Foreign Types
&'a [u8]
&'a str
String
Vec<u8>
[u8]
str
Implementors
In combine::
parser::
combinator
combine
::
parser
::
combinator
Trait
StrLike
Copy item path
Source
pub trait StrLike: Sealed { // Required method fn
from_utf8
(&self) ->
Option
<&
str
>; }
Required Methods
§
Source
fn
from_utf8
(&self) ->
Option
<&
str
>
Implementations on Foreign Types
§
Source
§
impl
StrLike
for
str
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Source
§
impl
StrLike
for
String
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Source
§
impl
StrLike
for
Vec
<
u8
>
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Source
§
impl
StrLike
for [
u8
]
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Source
§
impl<'a>
StrLike
for &'a
str
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Source
§
impl<'a>
StrLike
for &'a [
u8
]
Source
§
fn
from_utf8
(&self) ->
Option
<&
str
>
Implementors
§