pub struct EngineerContributionEventBountyContribution {
pub quantity: u32,
pub total_quantity: u32,
}Expand description
Contribution where the plater handed in a number of bounties.
Fields§
§quantity: u32Number of bounties that were handed in at this moment.
total_quantity: u32The total number of bounties the player has handed in at this engineer so far.
Trait Implementations§
Source§impl Clone for EngineerContributionEventBountyContribution
impl Clone for EngineerContributionEventBountyContribution
Source§fn clone(&self) -> EngineerContributionEventBountyContribution
fn clone(&self) -> EngineerContributionEventBountyContribution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for EngineerContributionEventBountyContribution
impl<'de> Deserialize<'de> for EngineerContributionEventBountyContribution
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 EngineerContributionEventBountyContribution
impl PartialEq for EngineerContributionEventBountyContribution
Source§fn eq(&self, other: &EngineerContributionEventBountyContribution) -> bool
fn eq(&self, other: &EngineerContributionEventBountyContribution) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EngineerContributionEventBountyContribution
Auto Trait Implementations§
impl Freeze for EngineerContributionEventBountyContribution
impl RefUnwindSafe for EngineerContributionEventBountyContribution
impl Send for EngineerContributionEventBountyContribution
impl Sync for EngineerContributionEventBountyContribution
impl Unpin for EngineerContributionEventBountyContribution
impl UnsafeUnpin for EngineerContributionEventBountyContribution
impl UnwindSafe for EngineerContributionEventBountyContribution
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