Remove deprecated APIs (#800)

* Remove deprecations APIs

* changelog
This commit is contained in:
David Pedersen
2022-02-28 23:22:21 +00:00
committed by GitHub
parent f12ab072c5
commit 0d05b5e31f
5 changed files with 4 additions and 27 deletions
+1 -2
View File
@@ -54,7 +54,7 @@ macro_rules! composite_rejection {
#[non_exhaustive]
pub enum $name {
$(
#[allow(missing_docs, deprecated)]
#[allow(missing_docs)]
$variant($variant)
),+
}
@@ -70,7 +70,6 @@ macro_rules! composite_rejection {
}
$(
#[allow(deprecated)]
impl From<$variant> for $name {
fn from(inner: $variant) -> Self {
Self::$variant(inner)