mirror of
https://github.com/lune-org/lune.git
synced 2025-04-05 02:50:57 +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);
|
pub struct JitStatus(bool);
|
||||||
|
|
||||||
impl JitStatus {
|
impl JitStatus {
|
||||||
|
#[must_use]
|
||||||
pub fn new(enabled: bool) -> Self {
|
pub fn new(enabled: bool) -> Self {
|
||||||
Self(enabled)
|
Self(enabled)
|
||||||
}
|
}
|
||||||
|
@ -10,6 +11,7 @@ impl JitStatus {
|
||||||
self.0 = enabled;
|
self.0 = enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[must_use]
|
||||||
pub fn enabled(self) -> bool {
|
pub fn enabled(self) -> bool {
|
||||||
self.0
|
self.0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue