Enum arcdps::evtc::buff::BuffRemoveKind
source · pub enum BuffRemoveKind {
All {
stacks_removed: u8,
},
Single {
stack_id: u32,
},
Manual {
stack_id: u32,
},
Unknown(u8),
}
Expand description
Kind of buff remove.
Variants§
All
Last or all stacks removed.
Sent by server.
Single
Single stack removed.
Happens for each stack on cleanse.
Sent by server.
Manual
Single stack removed.
Automatically by Arc on out of combat or all stack. Ignore for strip/cleanse calculation. Use for in/out volume.
Unknown(u8)
Unknown or invalid.
Trait Implementations§
source§impl Clone for BuffRemoveKind
impl Clone for BuffRemoveKind
source§fn clone(&self) -> BuffRemoveKind
fn clone(&self) -> BuffRemoveKind
Returns a copy 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 BuffRemoveKind
impl Debug for BuffRemoveKind
source§impl<'de> Deserialize<'de> for BuffRemoveKind
impl<'de> Deserialize<'de> for BuffRemoveKind
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<BuffRemoveKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BuffRemoveKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Extract for BuffRemoveKind
impl Extract for BuffRemoveKind
source§impl Hash for BuffRemoveKind
impl Hash for BuffRemoveKind
source§impl Ord for BuffRemoveKind
impl Ord for BuffRemoveKind
source§fn cmp(&self, other: &BuffRemoveKind) -> Ordering
fn cmp(&self, other: &BuffRemoveKind) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for BuffRemoveKind
impl PartialEq for BuffRemoveKind
source§fn eq(&self, other: &BuffRemoveKind) -> bool
fn eq(&self, other: &BuffRemoveKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for BuffRemoveKind
impl PartialOrd for BuffRemoveKind
source§fn partial_cmp(&self, other: &BuffRemoveKind) -> Option<Ordering>
fn partial_cmp(&self, other: &BuffRemoveKind) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for BuffRemoveKind
impl Serialize for BuffRemoveKind
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for BuffRemoveKind
impl Eq for BuffRemoveKind
impl StructuralPartialEq for BuffRemoveKind
Auto Trait Implementations§
impl Freeze for BuffRemoveKind
impl RefUnwindSafe for BuffRemoveKind
impl Send for BuffRemoveKind
impl Sync for BuffRemoveKind
impl Unpin for BuffRemoveKind
impl UnwindSafe for BuffRemoveKind
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