Remove `impl const` and `#![feature(...)]`

This commit is contained in:
Michael Pfaff 2024-05-20 12:29:51 -04:00
parent 84c3cada2c
commit 9ee5fad44a
1 changed files with 26 additions and 21 deletions

View File

@ -1,5 +1,3 @@
#![feature(const_trait_impl)]
#[macro_use] #[macro_use]
extern crate tracing; extern crate tracing;
@ -29,38 +27,47 @@ pub struct ReqComps(u8);
impl ReqComps { impl ReqComps {
#[inline] #[inline]
pub const fn contains(self, mask: ReqComp) -> bool { pub const fn contains(self, mask: ReqComp) -> bool {
(self & mask).0 == mask as u8 self.bitand_one(mask).0 == mask as u8
} }
#[inline] #[inline]
pub const fn contains_all(self, mask: ReqComps) -> bool { pub const fn contains_all(self, mask: Self) -> bool {
self & mask == mask self.bitand_self(mask).0 == mask.0
}
#[inline]
const fn bitand_self(self, rhs: Self) -> Self {
Self((self.0 as u8) & (rhs.0 as u8))
}
#[inline]
const fn bitand_one(self, rhs: ReqComp) -> Self {
Self((self.0 as u8) & (rhs as u8))
} }
} }
impl const Default for ReqComps { impl Default for ReqComps {
#[inline] #[inline]
fn default() -> Self { fn default() -> Self {
Self(0) Self(0)
} }
} }
// unfortunately, the automatic Into impl will not be const. impl From<ReqComp> for ReqComps {
impl const From<ReqComp> for ReqComps {
#[inline] #[inline]
fn from(comp: ReqComp) -> Self { fn from(comp: ReqComp) -> Self {
Self(comp as u8) Self(comp as u8)
} }
} }
impl const core::cmp::PartialEq for ReqComps { impl core::cmp::PartialEq for ReqComps {
#[inline] #[inline]
fn eq(&self, comp: &Self) -> bool { fn eq(&self, comp: &Self) -> bool {
self.0 == comp.0 self.0 == comp.0
} }
} }
impl const core::ops::BitOr for ReqComp { impl core::ops::BitOr for ReqComp {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
@ -69,16 +76,16 @@ impl const core::ops::BitOr for ReqComp {
} }
} }
impl const core::ops::BitOr for ReqComps { impl core::ops::BitOr for ReqComps {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
fn bitor(self, rhs: Self) -> Self::Output { fn bitor(self, rhs: Self) -> Self::Output {
ReqComps((self.0 as u8) | (rhs.0 as u8)) ReqComps(self.0 | rhs.0)
} }
} }
impl const core::ops::BitOr<ReqComp> for ReqComps { impl core::ops::BitOr<ReqComp> for ReqComps {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
@ -87,7 +94,6 @@ impl const core::ops::BitOr<ReqComp> for ReqComps {
} }
} }
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitOrAssign for ReqComps { impl core::ops::BitOrAssign for ReqComps {
#[inline] #[inline]
fn bitor_assign(&mut self, rhs: ReqComps) { fn bitor_assign(&mut self, rhs: ReqComps) {
@ -95,7 +101,6 @@ impl core::ops::BitOrAssign for ReqComps {
} }
} }
// TODO make `const` when is "stable" #57349 <https://github.com/rust-lang/rust/issues/57349>
impl core::ops::BitOrAssign<ReqComp> for ReqComps { impl core::ops::BitOrAssign<ReqComp> for ReqComps {
#[inline] #[inline]
fn bitor_assign(&mut self, rhs: ReqComp) { fn bitor_assign(&mut self, rhs: ReqComp) {
@ -103,7 +108,7 @@ impl core::ops::BitOrAssign<ReqComp> for ReqComps {
} }
} }
impl const core::ops::BitAnd for ReqComp { impl core::ops::BitAnd for ReqComp {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
@ -112,21 +117,21 @@ impl const core::ops::BitAnd for ReqComp {
} }
} }
impl const core::ops::BitAnd for ReqComps { impl core::ops::BitAnd for ReqComps {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
fn bitand(self, rhs: Self) -> Self::Output { fn bitand(self, rhs: Self) -> Self::Output {
ReqComps((self.0 as u8) & (rhs.0 as u8)) self.bitand_self(rhs)
} }
} }
impl const core::ops::BitAnd<ReqComp> for ReqComps { impl core::ops::BitAnd<ReqComp> for ReqComps {
type Output = ReqComps; type Output = ReqComps;
#[inline] #[inline]
fn bitand(self, rhs: ReqComp) -> Self::Output { fn bitand(self, rhs: ReqComp) -> Self::Output {
ReqComps((self.0 as u8) & (rhs as u8)) self.bitand_one(rhs)
} }
} }
@ -151,7 +156,7 @@ pub struct LogMiddleware {
pub components: ReqComps, pub components: ReqComps,
} }
impl const Default for LogMiddleware { impl Default for LogMiddleware {
#[inline] #[inline]
fn default() -> Self { fn default() -> Self {
Self { Self {