pub enum Channel {
BgaBase,
BgaLayer,
BgaPoor,
Bgm,
BpmChangeU8,
BpmChange,
ChangeOption,
Note {
kind: NoteKind,
is_player1: bool,
key: Key,
},
SectionLen,
Stop,
}
Expand description
The channel, or lane, where the note will be on.
Variants§
BgaBase
The BGA channel.
BgaLayer
The BGA channel but overlay to Channel::BgaBase
channel.
BgaPoor
The POOR BGA channel.
Bgm
For the note which will be auto-played.
BpmChangeU8
For the bpm change by an u8
integer.
BpmChange
For the bpm change object.
ChangeOption
For the change option object.
Note
Fields
For the note which the user can interact.
SectionLen
For the section length change object.
Stop
For the stop object.
Trait Implementations§
source§impl PartialEq for Channel
impl PartialEq for Channel
impl Eq for Channel
impl StructuralEq for Channel
impl StructuralPartialEq for Channel
Auto Trait Implementations§
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
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