pub struct Bmson {
pub version: String,
pub info: BmsonInfo,
pub lines: Option<Vec<BarLine>>,
pub bpm_events: Option<Vec<BpmEvent>>,
pub stop_events: Option<Vec<StopEvent>>,
pub sound_channels: Option<Vec<SoundChannel>>,
pub bga: Bga,
pub scroll_events: Option<Vec<ScrollEvent>>,
pub mine_channels: Option<Vec<MineChannel>>,
pub key_channels: Option<Vec<KeyChannel>>,
}
Expand description
Bmson本体
Fields§
§version: String
Bmsonのバージョン
info: BmsonInfo
譜面の情報
lines: Option<Vec<BarLine>>
小節線
bpm_events: Option<Vec<BpmEvent>>
BPMイベント
stop_events: Option<Vec<StopEvent>>
譜面停止イベント
sound_channels: Option<Vec<SoundChannel>>
音声チャンネル
bga: Bga
BGA情報
scroll_events: Option<Vec<ScrollEvent>>
スクロール速度イベント(beatoraja拡張)
mine_channels: Option<Vec<MineChannel>>
地雷チャンネル(beatoraja拡張)
key_channels: Option<Vec<KeyChannel>>
不可視ノートチャンネル(beatoraja拡張)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bmson
impl<'de> Deserialize<'de> for Bmson
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Bmson
Auto Trait Implementations§
impl Freeze for Bmson
impl RefUnwindSafe for Bmson
impl Send for Bmson
impl Sync for Bmson
impl Unpin for Bmson
impl UnwindSafe for Bmson
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more