pub struct Command {
pub note: Option<NoteCmd>,
pub instrument: Option<InstrumentId>,
pub volume: Option<VolumeCmd>,
pub effect: Option<EffectCmd>,
}Expand description
Pattern command
Command is one cell on the pattern table.
Fields§
§note: Option<NoteCmd>§instrument: Option<InstrumentId>§volume: Option<VolumeCmd>§effect: Option<EffectCmd>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
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