pub struct RenameSuitLoadoutEvent {
pub suit_id: u64,
pub suit_name: Suit,
pub suit_name_localized: Option<String>,
pub loadout_id: u64,
pub loadout_name: String,
}
Fields§
§suit_id: u64
§suit_name: Suit
§suit_name_localized: Option<String>
§loadout_id: u64
§loadout_name: String
Trait Implementations§
Source§impl Clone for RenameSuitLoadoutEvent
impl Clone for RenameSuitLoadoutEvent
Source§fn clone(&self) -> RenameSuitLoadoutEvent
fn clone(&self) -> RenameSuitLoadoutEvent
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 RenameSuitLoadoutEvent
impl Debug for RenameSuitLoadoutEvent
Source§impl<'de> Deserialize<'de> for RenameSuitLoadoutEvent
impl<'de> Deserialize<'de> for RenameSuitLoadoutEvent
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 RenameSuitLoadoutEvent
impl PartialEq for RenameSuitLoadoutEvent
Source§impl Serialize for RenameSuitLoadoutEvent
impl Serialize for RenameSuitLoadoutEvent
impl StructuralPartialEq for RenameSuitLoadoutEvent
Auto Trait Implementations§
impl Freeze for RenameSuitLoadoutEvent
impl RefUnwindSafe for RenameSuitLoadoutEvent
impl Send for RenameSuitLoadoutEvent
impl Sync for RenameSuitLoadoutEvent
impl Unpin for RenameSuitLoadoutEvent
impl UnwindSafe for RenameSuitLoadoutEvent
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