don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(jetstream): satiate pendantic clippy

Signed-off-by: tjh <x@tjh.dev>

tjh 4ce80f0f 8e7bee08

+3 -1
+3 -1
crates/gordian-jetstream/src/de.rs
··· 84 84 Self::Suspended => "suspended", 85 85 Self::Takendown => "takendown", 86 86 Self::Throttled => "throttled", 87 - Self::Unknown(value) => &value, 87 + Self::Unknown(value) => value, 88 88 }) 89 89 } 90 90 } ··· 105 105 } 106 106 107 107 impl AccountStatus { 108 + #[must_use] 108 109 pub const fn is_active(&self) -> bool { 109 110 matches!(self, Self::Active) 110 111 } ··· 239 238 } 240 239 241 240 impl Account<'_> { 241 + #[must_use] 242 242 pub const fn is_active(&self) -> bool { 243 243 self.status.is_active() 244 244 }