StrLike
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
Structs
AndThen
AnyPartialState
AnyPartialStateParser
AnySendPartialState
AnySendPartialStateParser
AnySendSyncPartialState
AnySendSyncPartialStateParser
Factory
FlatMap
FromStr
Ignore
InputConverter
Lazy
LookAhead
Map
MapInput
NoPartial
NotFollowedBy
Opaque
Recognize
Spanned
Try
Enums
Either
Traits
Converter
StrLike
Functions
and_then
any_partial_state
any_send_partial_state
any_send_sync_partial_state
attempt
factory
flat_map
from_str
input_converter
lazy
look_ahead
map
map_input
no_partial
not_followed_by
opaque
recognize
spanned
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) ->
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
§