pub struct RestockVehicleEvent {
pub kind: RestockVehicleEventType,
pub type_localized: Option<String>,
pub loadout: FighterLoadout,
pub id: Option<u8>,
pub cost: u64,
pub count: u8,
}
Fields§
§kind: RestockVehicleEventType
§type_localized: Option<String>
§loadout: FighterLoadout
§id: Option<u8>
§cost: u64
§count: u8
Trait Implementations§
Source§impl Clone for RestockVehicleEvent
impl Clone for RestockVehicleEvent
Source§fn clone(&self) -> RestockVehicleEvent
fn clone(&self) -> RestockVehicleEvent
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 RestockVehicleEvent
impl Debug for RestockVehicleEvent
Source§impl<'de> Deserialize<'de> for RestockVehicleEvent
impl<'de> Deserialize<'de> for RestockVehicleEvent
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 RestockVehicleEvent
impl PartialEq for RestockVehicleEvent
Source§impl Serialize for RestockVehicleEvent
impl Serialize for RestockVehicleEvent
impl StructuralPartialEq for RestockVehicleEvent
Auto Trait Implementations§
impl Freeze for RestockVehicleEvent
impl RefUnwindSafe for RestockVehicleEvent
impl Send for RestockVehicleEvent
impl Sync for RestockVehicleEvent
impl Unpin for RestockVehicleEvent
impl UnwindSafe for RestockVehicleEvent
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