From c35e30acab6d663657cd2ba6b7048b5cb8d98d7b Mon Sep 17 00:00:00 2001 From: leon3s Date: Wed, 28 Feb 2024 15:26:18 +0100 Subject: [PATCH] fix: clippy on cors and readme ci badge --- README.md | 2 +- ntex-cors/src/lib.rs | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 46d894e8..9093effb 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

A collection of additional crates supporting the ntex frameworks.

-[![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) [![codecov](https://codecov.io/gh/ntex-rs/ntex-extras/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex-extras) diff --git a/ntex-cors/src/lib.rs b/ntex-cors/src/lib.rs index d1a288e6..2a616c75 100644 --- a/ntex-cors/src/lib.rs +++ b/ntex-cors/src/lib.rs @@ -104,19 +104,15 @@ impl WebResponseError for CorsError { /// allowed). /// /// `Default` is implemented for this enum and is `All`. -#[derive(Clone, Debug, Eq, PartialEq)] +#[derive(Default, Clone, Debug, Eq, PartialEq)] pub enum AllOrSome { /// Everything is allowed. Usually equivalent to the "*" value. + #[default] All, /// Only some of `T` is allowed Some(T), } -impl Default for AllOrSome { - fn default() -> Self { - AllOrSome::All - } -} impl AllOrSome { /// Returns whether this is an `All` variant