wowlab_types/types/combat/timing.rs
1/// Haste source used to scale a spell's global cooldown.
2#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
3#[non_exhaustive]
4pub enum GcdHasteType {
5 /// The global cooldown is fixed.
6 None,
7 /// Scale with spell cast speed.
8 #[default]
9 SpellCastSpeed,
10 /// Scale with attack haste.
11 AttackHaste,
12}