pub struct DeleteSuitLoadoutEvent {
pub suit_id: u64,
pub suit_name: Suit,
pub suit_name_localized: String,
pub loadout_id: u64,
pub loadout_name: String,
}
Expand description
Fired when deleting a suit load-out.
Fields§
§suit_id: u64
The id of the suit that was used for the load-out.
suit_name: Suit
The suit that was used for the load-out.
suit_name_localized: String
The localized name of the suit that was used for the load-out.
loadout_id: u64
The id of the deleted load-out.
loadout_name: String
The name of the deleted load-out.
Trait Implementations§
Source§impl Clone for DeleteSuitLoadoutEvent
impl Clone for DeleteSuitLoadoutEvent
Source§fn clone(&self) -> DeleteSuitLoadoutEvent
fn clone(&self) -> DeleteSuitLoadoutEvent
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 DeleteSuitLoadoutEvent
impl Debug for DeleteSuitLoadoutEvent
Source§impl<'de> Deserialize<'de> for DeleteSuitLoadoutEvent
impl<'de> Deserialize<'de> for DeleteSuitLoadoutEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeleteSuitLoadoutEvent
impl PartialEq for DeleteSuitLoadoutEvent
Source§impl Serialize for DeleteSuitLoadoutEvent
impl Serialize for DeleteSuitLoadoutEvent
impl StructuralPartialEq for DeleteSuitLoadoutEvent
Auto Trait Implementations§
impl Freeze for DeleteSuitLoadoutEvent
impl RefUnwindSafe for DeleteSuitLoadoutEvent
impl Send for DeleteSuitLoadoutEvent
impl Sync for DeleteSuitLoadoutEvent
impl Unpin for DeleteSuitLoadoutEvent
impl UnwindSafe for DeleteSuitLoadoutEvent
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