fix: apply must_use attribute to required methods in JitStatus

This commit is contained in:
Erica Marigold 2024-10-17 12:41:48 +01:00
parent 1025bb7a3e
commit 4d25f0a66f
No known key found for this signature in database
GPG key ID: E3F23ACCDA539F3B

View file

@ -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
}