StrLike
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
Structs
AndThen
AnyPartialState
AnyPartialStateParser
AnySendPartialState
AnySendPartialStateParser
Factory
FlatMap
FromStr
Ignore
Lazy
LookAhead
Map
NoPartial
NotFollowedBy
Opaque
Recognize
Try
Traits
StrLike
Functions
and_then
any_partial_state
any_send_partial_state
attempt
factory
flat_map
from_str
lazy
look_ahead
map
no_partial
not_followed_by
opaque
recognize
try
Type Aliases
FnOpaque
combine
::
parser
::
combinator
Trait
StrLike
Copy item path
Settings
Help
Summary
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
§