pub struct CommunityGoalJoinEvent {
pub cgid: u64,
pub name: String,
pub system: String,
}
Expand description
Fired when the player joins the community event.
Fields§
§cgid: u64
The id of the community goal.
name: String
The name of the community goal.
system: String
The system where the community goal is located in.
Trait Implementations§
Source§impl Clone for CommunityGoalJoinEvent
impl Clone for CommunityGoalJoinEvent
Source§fn clone(&self) -> CommunityGoalJoinEvent
fn clone(&self) -> CommunityGoalJoinEvent
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 CommunityGoalJoinEvent
impl Debug for CommunityGoalJoinEvent
Source§impl<'de> Deserialize<'de> for CommunityGoalJoinEvent
impl<'de> Deserialize<'de> for CommunityGoalJoinEvent
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 CommunityGoalJoinEvent
impl PartialEq for CommunityGoalJoinEvent
Source§impl Serialize for CommunityGoalJoinEvent
impl Serialize for CommunityGoalJoinEvent
impl StructuralPartialEq for CommunityGoalJoinEvent
Auto Trait Implementations§
impl Freeze for CommunityGoalJoinEvent
impl RefUnwindSafe for CommunityGoalJoinEvent
impl Send for CommunityGoalJoinEvent
impl Sync for CommunityGoalJoinEvent
impl Unpin for CommunityGoalJoinEvent
impl UnwindSafe for CommunityGoalJoinEvent
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