pub struct LeftSquadronEvent {
pub squadron_name: String,
}
Expand description
Fired when the player left a squadron.
Fields§
§squadron_name: String
The name of the squadron left.
Trait Implementations§
Source§impl Clone for LeftSquadronEvent
impl Clone for LeftSquadronEvent
Source§fn clone(&self) -> LeftSquadronEvent
fn clone(&self) -> LeftSquadronEvent
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 LeftSquadronEvent
impl Debug for LeftSquadronEvent
Source§impl<'de> Deserialize<'de> for LeftSquadronEvent
impl<'de> Deserialize<'de> for LeftSquadronEvent
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 LeftSquadronEvent
impl PartialEq for LeftSquadronEvent
Source§impl Serialize for LeftSquadronEvent
impl Serialize for LeftSquadronEvent
impl StructuralPartialEq for LeftSquadronEvent
Auto Trait Implementations§
impl Freeze for LeftSquadronEvent
impl RefUnwindSafe for LeftSquadronEvent
impl Send for LeftSquadronEvent
impl Sync for LeftSquadronEvent
impl Unpin for LeftSquadronEvent
impl UnwindSafe for LeftSquadronEvent
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