validator
0.17.0
Validate
Contains
Required Methods
validate_contains
Implementations on Foreign Types
&'a str
&T
Cow<'cow, T>
HashMap<String, S, H>
Option<T>
String
Implementors
In crate validator
validator
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
String
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<'a>
ValidateContains
for &'a
str
Source
§
fn
validate_contains
(&self, needle: &
str
) ->
bool
Source
§
impl<'cow, T>
ValidateContains
for
Cow
<'cow, T>
where T:
ToOwned
+ ?
Sized
, for<'a>
&'a T
:
ValidateContains
,
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
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
§