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.

Merge pull request #15 from AlephCubed/docs-cleanup

Hide re-exports from docs.

authored by

AlephCubed and committed by
GitHub
9e971adc 138f6383

+18 -1
+3
src/difficulty.rs
··· 4 4 pub mod lightshow; 5 5 pub mod playfield; 6 6 7 + #[doc(hidden)] 7 8 pub use gameplay_event::*; 9 + #[doc(hidden)] 8 10 pub use lightshow::*; 11 + #[doc(hidden)] 9 12 pub use playfield::*; 10 13 11 14 use serde::{Deserialize, Serialize};
+4
src/difficulty/lightshow.rs
··· 5 5 pub mod filter; 6 6 pub mod group; 7 7 8 + #[doc(hidden)] 8 9 pub use basic::*; 10 + #[doc(hidden)] 9 11 pub use easing::*; 12 + #[doc(hidden)] 10 13 pub use filter::*; 14 + #[doc(hidden)] 11 15 pub use group::*; 12 16 13 17 use crate::loose_enum;
+3
src/difficulty/lightshow/group.rs
··· 4 4 pub mod rotation; 5 5 pub mod translation; 6 6 7 + #[doc(hidden)] 7 8 pub use color::*; 9 + #[doc(hidden)] 8 10 pub use rotation::*; 11 + #[doc(hidden)] 9 12 pub use translation::*; 10 13 11 14 use crate::difficulty::lightshow::filter::Filter;
+1
src/info.rs
··· 2 2 3 3 pub mod color_scheme; 4 4 5 + #[doc(hidden)] 5 6 pub use color_scheme::*; 6 7 7 8 use crate::loose_enum;
+1
src/info/color_scheme.rs
··· 3 3 pub mod presets; 4 4 5 5 #[allow(unused_imports)] 6 + #[doc(hidden)] 6 7 pub use presets::*; 7 8 8 9 use serde::{Deserialize, Serialize};
+6 -1
src/lib.rs
··· 3 3 pub mod difficulty; 4 4 pub mod info; 5 5 pub mod timing_traits; 6 - pub mod utils; 7 6 7 + mod utils; 8 + 9 + #[doc(hidden)] 8 10 pub use difficulty::*; 11 + #[doc(hidden)] 9 12 pub use info::*; 13 + #[doc(hidden)] 10 14 pub use timing_traits::*; 15 + /// An integer repr bool, with 0 being false and 1 being true. Any other value will be saved as `Unknown`. 11 16 pub use utils::LooseBool;