Docs.rs
stringmatch-0.4.0
stringmatch 0.4.0
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
stevepryde
Dependencies
regex ^1
normal
serde ^1
normal
optional
serde_json ^1
dev
Versions
11.54%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Needle
stringmatch
0.4.0
Needle
Required Methods
is_match
Implementations on Foreign Types
&str
Regex
String
Implementors
In crate stringmatch
stringmatch
Trait
Needle
Copy item path
Source
pub trait Needle { // Required method fn
is_match
(&self, haystack: &
str
) ->
bool
; }
Required Methods
§
Source
fn
is_match
(&self, haystack: &
str
) ->
bool
Implementations on Foreign Types
§
Source
§
impl
Needle
for &
str
Source
§
fn
is_match
(&self, haystack: &
str
) ->
bool
Source
§
impl
Needle
for
String
Source
§
fn
is_match
(&self, haystack: &
str
) ->
bool
Source
§
impl
Needle
for
Regex
Source
§
fn
is_match
(&self, haystack: &
str
) ->
bool
Implementors
§
Source
§
impl
Needle
for
StringMatch
Source
§
impl<F>
Needle
for F
where F:
Fn
(&
str
) ->
bool
,