fix: clippy on cors and readme ci badge

This commit is contained in:
leon3s 2024-02-28 15:26:18 +01:00
parent 80b25715c9
commit c35e30acab
2 changed files with 3 additions and 7 deletions

View file

@ -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>
[![Build Status](https://github.com/ntex-rs/ntex-extras/workflows/CI%20(Linux)/badge.svg)](https://travis-ci.org/ntex-rs/ntex) [![Build Status](https://github.com/ntex-rs/ntex-extras/actions/workflows/linux.yml/badge.svg)](https://github.com/ntex-rs/ntex-extras/actions/workflows/linux.yml)
[![Version](https://img.shields.io/badge/rustc-1.75+-lightgray.svg)](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html) [![Version](https://img.shields.io/badge/rustc-1.75+-lightgray.svg)](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
[![codecov](https://codecov.io/gh/ntex-rs/ntex-extras/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex-extras) [![codecov](https://codecov.io/gh/ntex-rs/ntex-extras/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex-extras)

View file

@ -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