pub enum EffectCategory {
GlobalTiming,
GlobalPattern,
Volume,
Pitch,
Panning,
Misc,
}Expand description
Effect category
OpenMPT categorizes effects into groups which are then used in the UI for color highlighting. These don’t have any effect on parsing and are purely determined from the effect code.
Categorization is taken from OpenMPT wiki.
Variants§
Trait Implementations§
Source§impl Clone for EffectCategory
impl Clone for EffectCategory
Source§fn clone(&self) -> EffectCategory
fn clone(&self) -> EffectCategory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EffectCategory
impl Debug for EffectCategory
Source§impl PartialEq for EffectCategory
impl PartialEq for EffectCategory
impl Copy for EffectCategory
impl StructuralPartialEq for EffectCategory
Auto Trait Implementations§
impl Freeze for EffectCategory
impl RefUnwindSafe for EffectCategory
impl Send for EffectCategory
impl Sync for EffectCategory
impl Unpin for EffectCategory
impl UnwindSafe for EffectCategory
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