mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-05 13:57:41 +03:00
fix: clippy on cors and readme ci badge
This commit is contained in:
parent
80b25715c9
commit
c35e30acab
2 changed files with 3 additions and 7 deletions
|
@ -3,7 +3,7 @@
|
||||||
<p><strong>A collection of additional crates supporting the ntex frameworks.</strong> </p>
|
<p><strong>A collection of additional crates supporting the ntex frameworks.</strong> </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
[/badge.svg)](https://travis-ci.org/ntex-rs/ntex)
|
[](https://github.com/ntex-rs/ntex-extras/actions/workflows/linux.yml)
|
||||||
[](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
|
[](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
|
||||||
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
[](https://codecov.io/gh/ntex-rs/ntex-extras)
|
||||||
|
|
||||||
|
|
|
@ -104,19 +104,15 @@ impl WebResponseError<DefaultError> for CorsError {
|
||||||
/// allowed).
|
/// allowed).
|
||||||
///
|
///
|
||||||
/// `Default` is implemented for this enum and is `All`.
|
/// `Default` is implemented for this enum and is `All`.
|
||||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
#[derive(Default, Clone, Debug, Eq, PartialEq)]
|
||||||
pub enum AllOrSome<T> {
|
pub enum AllOrSome<T> {
|
||||||
/// Everything is allowed. Usually equivalent to the "*" value.
|
/// Everything is allowed. Usually equivalent to the "*" value.
|
||||||
|
#[default]
|
||||||
All,
|
All,
|
||||||
/// Only some of `T` is allowed
|
/// Only some of `T` is allowed
|
||||||
Some(T),
|
Some(T),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Default for AllOrSome<T> {
|
|
||||||
fn default() -> Self {
|
|
||||||
AllOrSome::All
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> AllOrSome<T> {
|
impl<T> AllOrSome<T> {
|
||||||
/// Returns whether this is an `All` variant
|
/// Returns whether this is an `All` variant
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue