Beatsaber Rust Utilities: A Beatsaber V3 parsing library.
beatsaber beatmap
0
fork

Configure Feed

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

Implement `From<bool>` for `LooseBool`.

+9
+9
src/utils.rs
··· 149 149 } 150 150 } 151 151 } 152 + 153 + impl From<bool> for LooseBool { 154 + fn from(value: bool) -> Self { 155 + match value { 156 + true => Self::True, 157 + false => Self::False, 158 + } 159 + } 160 + }