pub struct CrewMemberJoinsEvent {
pub crew: String,
pub telepresence: bool,
}
Expand description
Fired whenever a new player joins a multi-crew session.
Fields§
§crew: String
The CMDR name of the player that joined the session.
telepresence: bool
Trait Implementations§
Source§impl Clone for CrewMemberJoinsEvent
impl Clone for CrewMemberJoinsEvent
Source§fn clone(&self) -> CrewMemberJoinsEvent
fn clone(&self) -> CrewMemberJoinsEvent
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 CrewMemberJoinsEvent
impl Debug for CrewMemberJoinsEvent
Source§impl<'de> Deserialize<'de> for CrewMemberJoinsEvent
impl<'de> Deserialize<'de> for CrewMemberJoinsEvent
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 CrewMemberJoinsEvent
impl PartialEq for CrewMemberJoinsEvent
Source§impl Serialize for CrewMemberJoinsEvent
impl Serialize for CrewMemberJoinsEvent
impl StructuralPartialEq for CrewMemberJoinsEvent
Auto Trait Implementations§
impl Freeze for CrewMemberJoinsEvent
impl RefUnwindSafe for CrewMemberJoinsEvent
impl Send for CrewMemberJoinsEvent
impl Sync for CrewMemberJoinsEvent
impl Unpin for CrewMemberJoinsEvent
impl UnwindSafe for CrewMemberJoinsEvent
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