mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
fix: apply must_use
attribute to required methods in JitStatus
This commit is contained in:
parent
1025bb7a3e
commit
4d25f0a66f
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
pub struct JitStatus(bool);
|
||||
|
||||
impl JitStatus {
|
||||
#[must_use]
|
||||
pub fn new(enabled: bool) -> Self {
|
||||
Self(enabled)
|
||||
}
|
||||
|
@ -10,6 +11,7 @@ impl JitStatus {
|
|||
self.0 = enabled;
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn enabled(self) -> bool {
|
||||
self.0
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue