Enum arcdps::evtc::BuffRemove
source · #[repr(u8)]pub enum BuffRemove {
None = 0,
All = 1,
Single = 2,
Manual = 3,
Unknown(u8),
}
Expand description
Combat buff remove.
Variants§
None = 0
Not used, different kind of event.
All = 1
Last or all stacks removed.
Sent by server.
Single = 2
Single stack removed.
Happens for each stack on cleanse.
Sent by server.
Manual = 3
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 BuffRemove
impl Clone for BuffRemove
source§fn clone(&self) -> BuffRemove
fn clone(&self) -> BuffRemove
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 BuffRemove
impl Debug for BuffRemove
source§impl<'de> Deserialize<'de> for BuffRemove
impl<'de> Deserialize<'de> for BuffRemove
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<BuffRemove, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BuffRemove, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<u8> for BuffRemove
impl From<u8> for BuffRemove
source§fn from(number: u8) -> BuffRemove
fn from(number: u8) -> BuffRemove
Converts to this type from the input type.
source§impl FromPrimitive for BuffRemove
impl FromPrimitive for BuffRemove
type Primitive = u8
fn from_primitive( number: <BuffRemove as FromPrimitive>::Primitive ) -> BuffRemove
source§impl Hash for BuffRemove
impl Hash for BuffRemove
source§impl Ord for BuffRemove
impl Ord for BuffRemove
source§fn cmp(&self, other: &BuffRemove) -> Ordering
fn cmp(&self, other: &BuffRemove) -> 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 BuffRemove
impl PartialEq for BuffRemove
source§fn eq(&self, other: &BuffRemove) -> bool
fn eq(&self, other: &BuffRemove) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for BuffRemove
impl PartialOrd for BuffRemove
source§fn partial_cmp(&self, other: &BuffRemove) -> Option<Ordering>
fn partial_cmp(&self, other: &BuffRemove) -> 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 BuffRemove
impl Serialize for BuffRemove
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 BuffRemove
impl Eq for BuffRemove
impl StructuralPartialEq for BuffRemove
Auto Trait Implementations§
impl Freeze for BuffRemove
impl RefUnwindSafe for BuffRemove
impl Send for BuffRemove
impl Sync for BuffRemove
impl Unpin for BuffRemove
impl UnwindSafe for BuffRemove
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