Rustfmt + adding checks for OnlyShowIn / NotShowIn

This commit is contained in:
ellieplayswow 2025-02-27 19:59:12 +00:00 committed by Victoria Brekenfeld
parent 46468e8b8e
commit 8b4a8baea7
2 changed files with 59 additions and 32 deletions

View file

@ -15,7 +15,10 @@ pub struct EnvVar {
impl Into<EnvVar> for (&str, &str) {
fn into(self) -> EnvVar {
EnvVar { key: self.0.to_owned(), value: self.1.to_owned() }
EnvVar {
key: self.0.to_owned(),
value: self.1.to_owned(),
}
}
}