We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f70525 commit d618604Copy full SHA for d618604
README.md
@@ -190,8 +190,8 @@ impl MyBitfield {
190
const fn with_int(self, value: u16) -> Self { todo!() }
191
const fn with_int_checked(self, value: u16) -> Result<Self, ()> { todo!() }
192
193
- fn set_int(&mut self, value: u16) { todo!() }
194
- fn set_int_checked(&mut self, value: u16) -> Result<(), ()> { todo!() }
+ const fn set_int(&mut self, value: u16) { todo!() }
+ const fn set_int_checked(&mut self, value: u16) -> Result<(), ()> { todo!() }
195
196
// other field ...
197
}
0 commit comments