Docs.rs
validator-async-0.20.0
validator-async 0.20.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
Salman-Sali
Dependencies
card-validate ^2.3
normal
optional
idna ^1
normal
indexmap ^2.0.0
normal
optional
regex ^1
normal
serde ^1
normal
serde_derive ^1
normal
serde_json ^1
normal
tokio ^1.47.1
normal
url ^2
normal
validator-async-derive ^0.20
normal
optional
Versions
25.53%
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
validator_
async
0.20.0
Validate
Contains
Required Methods
validate_contains
Implementations on Foreign Types
&T
&str
Cow<'_, T>
HashMap<String, S, H>
Option<T>
String
Implementors
In crate validator_
async
validator_async
Trait
ValidateContains
Copy item path
Source
pub trait ValidateContains { // Required method fn
validate_contains
(&self, needle: &
str
) ->
bool
; }
Required Methods
§
Source
fn
validate_contains
(&self, needle: &
str
) ->
bool
Implementations on Foreign Types
§
Source
§
impl
ValidateContains
for &
str
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl
ValidateContains
for
String
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<S, H:
BuildHasher
>
ValidateContains
for
HashMap
<
String
, S, H>
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<T>
ValidateContains
for
Cow
<'_, T>
where T:
ToOwned
+ ?
Sized
, for<'a>
&'a T
:
ValidateContains
,
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<T>
ValidateContains
for
Option
<T>
where T:
ValidateContains
,
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<T>
ValidateContains
for
&T
where T:
ValidateContains
,
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Implementors
§