Docs.rs
validator-0.20.0
validator 0.20.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
Keats
Dependencies
card-validate ^2.3
normal
optional
idna ^1
normal
indexmap ^2.0.0
normal
optional
once_cell ^1.18.0
normal
regex ^1
normal
serde ^1
normal
serde_derive ^1
normal
serde_json ^1
normal
unic-ucd-common ^0.9
normal
optional
url ^2
normal
validator_derive ^0.20
normal
optional
Versions
27.27%
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
validator
0.20.0
AsRegex
Required Methods
as_regex
Implementations on Foreign Types
&Arc<Mutex<OnceCell<Regex>>>
&Arc<Mutex<OnceLock<Regex>>>
&Mutex<OnceCell<Regex>>
&Mutex<OnceLock<Regex>>
&OnceLock<Regex>
&T
LazyLock<Regex>
Regex
Implementors
In crate validator
validator
Trait
AsRegex
Copy item path
Source
pub trait AsRegex { // Required method fn
as_regex
(&self) ->
Cow
<'_,
Regex
>; }
Required Methods
§
Source
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Implementations on Foreign Types
§
Source
§
impl
AsRegex
for &
Arc
<
Mutex
<
OnceCell
<
Regex
>>>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for &
Arc
<
Mutex
<
OnceLock
<
Regex
>>>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for &
OnceLock
<
Regex
>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for &
Mutex
<
OnceCell
<
Regex
>>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for &
Mutex
<
OnceLock
<
Regex
>>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for
LazyLock
<
Regex
>
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl
AsRegex
for
Regex
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Source
§
impl<T>
AsRegex
for
&T
where T:
AsRegex
,
Source
§
fn
as_regex
(&self) ->
Cow
<'_,
Regex
>
Implementors
§