We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm struggling to implement rocket_validation::Validated.
Could sb. please guide me to the right direction?
By reading #187 I've come this far:
Cargo.toml:
Cargo.toml
[dependencies.rocket-validation] version = "0.1.3" optional = true
src/json_schema_impls/mod.rs:
src/json_schema_impls/mod.rs
#[cfg(feature = "rocket-validation")] mod rocket_validation;
src/json_schema_impls/rocket_validation.rs:
src/json_schema_impls/rocket_validation.rs
forward_impl!(rocket_validation::Validated<something> => something);
where something could be rocket::serde::json::Json<T> or just T
something
rocket::serde::json::Json<T>
T
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm struggling to implement rocket_validation::Validated.
Could sb. please guide me to the right direction?
By reading #187 I've come this far:
Cargo.toml
:src/json_schema_impls/mod.rs
:src/json_schema_impls/rocket_validation.rs
:where
something
could berocket::serde::json::Json<T>
or justT
The text was updated successfully, but these errors were encountered: