Struct BuffRemoveAll
pub struct BuffRemoveAll {
pub common: CommonEvent,
pub kind: BuffRemove,
pub duration: i32,
pub duration_intensity: i32,
}Expand description
Buff remove all.
Fields§
§common: CommonEventCommon combat event information.
kind: BuffRemoveBuff remove kind.
duration: i32Removed duration as duration.
duration_intensity: i32Removed duration as intensity.
Trait Implementations§
§impl AsMut<CommonEvent> for BuffRemoveAll
impl AsMut<CommonEvent> for BuffRemoveAll
§fn as_mut(&mut self) -> &mut CommonEvent
fn as_mut(&mut self) -> &mut CommonEvent
Converts this type into a mutable reference of the (usually inferred) input type.
§impl AsRef<CommonEvent> for BuffRemoveAll
impl AsRef<CommonEvent> for BuffRemoveAll
§fn as_ref(&self) -> &CommonEvent
fn as_ref(&self) -> &CommonEvent
Converts this type into a shared reference of the (usually inferred) input type.
§impl Clone for BuffRemoveAll
impl Clone for BuffRemoveAll
§fn clone(&self) -> BuffRemoveAll
fn clone(&self) -> BuffRemoveAll
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 more§impl Debug for BuffRemoveAll
impl Debug for BuffRemoveAll
§impl Deref for BuffRemoveAll
impl Deref for BuffRemoveAll
§type Target = CommonEvent
type Target = CommonEvent
The resulting type after dereferencing.
§fn deref(&self) -> &<BuffRemoveAll as Deref>::Target
fn deref(&self) -> &<BuffRemoveAll as Deref>::Target
Dereferences the value.
§impl DerefMut for BuffRemoveAll
impl DerefMut for BuffRemoveAll
§fn deref_mut(&mut self) -> &mut <BuffRemoveAll as Deref>::Target
fn deref_mut(&mut self) -> &mut <BuffRemoveAll as Deref>::Target
Mutably dereferences the value.
§impl<'de> Deserialize<'de> for BuffRemoveAll
impl<'de> Deserialize<'de> for BuffRemoveAll
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BuffRemoveAll, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BuffRemoveAll, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Extract for BuffRemoveAll
impl Extract for BuffRemoveAll
§impl From<BuffRemoveAll> for CommonEvent
impl From<BuffRemoveAll> for CommonEvent
§fn from(value: BuffRemoveAll) -> CommonEvent
fn from(value: BuffRemoveAll) -> CommonEvent
Converts to this type from the input type.
§impl Serialize for BuffRemoveAll
impl Serialize for BuffRemoveAll
§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 TryExtract for BuffRemoveAll
impl TryExtract for BuffRemoveAll
§fn can_extract(event: &Event) -> bool
fn can_extract(event: &Event) -> bool
Checks whether
Self can be extracted from the event.§fn try_extract(event: &Event) -> Option<Self>
fn try_extract(event: &Event) -> Option<Self>
Attempts to extract
Self from the combat event.Auto Trait Implementations§
impl Freeze for BuffRemoveAll
impl RefUnwindSafe for BuffRemoveAll
impl Send for BuffRemoveAll
impl Sync for BuffRemoveAll
impl Unpin for BuffRemoveAll
impl UnsafeUnpin for BuffRemoveAll
impl UnwindSafe for BuffRemoveAll
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