diff options
Diffstat (limited to 'rust/bits')
| -rw-r--r-- | rust/bits/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/bits/src/lib.rs b/rust/bits/src/lib.rs index d485d6bd11..e9d15ad0cb 100644 --- a/rust/bits/src/lib.rs +++ b/rust/bits/src/lib.rs @@ -165,19 +165,19 @@ macro_rules! bits { #[allow(dead_code)] #[inline(always)] - pub fn set(&mut self, rhs: Self) { + pub const fn set(&mut self, rhs: Self) { self.0 |= rhs.0; } #[allow(dead_code)] #[inline(always)] - pub fn clear(&mut self, rhs: Self) { + pub const fn clear(&mut self, rhs: Self) { self.0 &= !rhs.0; } #[allow(dead_code)] #[inline(always)] - pub fn toggle(&mut self, rhs: Self) { + pub const fn toggle(&mut self, rhs: Self) { self.0 ^= rhs.0; } |