Docs.rs
serde_valid-2.0.1
serde_valid 2.0.1
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
ya7010
Dependencies
fluent ^0.16.0
normal
optional
indexmap ^2.0
normal
itertools ^0.14.0
normal
num-traits ^0.2
normal
once_cell ^1.7
normal
paste ^1.0
normal
regex ^1.12
normal
serde ^1.0
normal
serde_json ^1.0
normal
toml ^0.8
normal
optional
serde_valid_derive ^2.0.1
normal
serde_valid_literal ^2.0.1
normal
serde_yaml ^0.9
normal
optional
thiserror ^1.0
normal
unicode-segmentation ^1.7
normal
intl-memoizer ^0.5
dev
unic-langid ^0.9
dev
Versions
16.95%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
Validate
serde_
valid
2.0.1
Validate
Required Methods
validate
Implementations on Foreign Types
HashMap<K, V>
IndexMap<K, V>
Option<T>
Vec<T>
[T; N]
Implementors
In crate serde_
valid
serde_valid
Trait
Validate
Copy item path
Source
pub trait Validate { // Required method fn
validate
(&self) ->
Result
<
()
,
Errors
>; }
Required Methods
§
Source
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Implementations on Foreign Types
§
Source
§
impl<K, V>
Validate
for
HashMap
<K, V>
where V:
Validate
, for<'a>
&'a K
:
Into
<
String
>,
Source
§
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Source
§
impl<K, V>
Validate
for
IndexMap
<K, V>
where V:
Validate
, for<'a>
&'a K
:
Into
<
String
>,
Source
§
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Source
§
impl<T>
Validate
for
Option
<T>
where T:
Validate
,
Source
§
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Source
§
impl<T>
Validate
for
Vec
<T>
where T:
Validate
,
Source
§
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Source
§
impl<T, const N:
usize
>
Validate
for
[T; N]
where T:
Validate
,
Source
§
fn
validate
(&self) ->
Result
<
()
,
Errors
>
Implementors
§