pub struct KickCrewMemberEvent {
pub crew: String,
pub on_crime: bool,
pub telepresence: bool,
}
Expand description
Fired when the current player kicks another player from the multi-crew session.
Fields§
§crew: String
The CMDR name of the player that has been kicked.
on_crime: bool
§telepresence: bool
Trait Implementations§
Source§impl Clone for KickCrewMemberEvent
impl Clone for KickCrewMemberEvent
Source§fn clone(&self) -> KickCrewMemberEvent
fn clone(&self) -> KickCrewMemberEvent
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 KickCrewMemberEvent
impl Debug for KickCrewMemberEvent
Source§impl<'de> Deserialize<'de> for KickCrewMemberEvent
impl<'de> Deserialize<'de> for KickCrewMemberEvent
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 KickCrewMemberEvent
impl PartialEq for KickCrewMemberEvent
Source§impl Serialize for KickCrewMemberEvent
impl Serialize for KickCrewMemberEvent
impl StructuralPartialEq for KickCrewMemberEvent
Auto Trait Implementations§
impl Freeze for KickCrewMemberEvent
impl RefUnwindSafe for KickCrewMemberEvent
impl Send for KickCrewMemberEvent
impl Sync for KickCrewMemberEvent
impl Unpin for KickCrewMemberEvent
impl UnwindSafe for KickCrewMemberEvent
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