pub struct CommunityGoalEvent {
pub current_goals: Vec<CommunityGoalEventGoal>,
}
Expand description
Fired when accessing information about currently active community goals.
Fields§
§current_goals: Vec<CommunityGoalEventGoal>
List of currently active community goals.
Trait Implementations§
Source§impl Clone for CommunityGoalEvent
impl Clone for CommunityGoalEvent
Source§fn clone(&self) -> CommunityGoalEvent
fn clone(&self) -> CommunityGoalEvent
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 CommunityGoalEvent
impl Debug for CommunityGoalEvent
Source§impl<'de> Deserialize<'de> for CommunityGoalEvent
impl<'de> Deserialize<'de> for CommunityGoalEvent
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 CommunityGoalEvent
impl PartialEq for CommunityGoalEvent
Source§impl Serialize for CommunityGoalEvent
impl Serialize for CommunityGoalEvent
impl StructuralPartialEq for CommunityGoalEvent
Auto Trait Implementations§
impl Freeze for CommunityGoalEvent
impl RefUnwindSafe for CommunityGoalEvent
impl Send for CommunityGoalEvent
impl Sync for CommunityGoalEvent
impl Unpin for CommunityGoalEvent
impl UnwindSafe for CommunityGoalEvent
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