pub struct EventDistrictPointsPointsValue {
pub total: i32,
pub alliance_points: i32,
pub elim_points: i32,
pub award_points: i32,
pub qual_points: i32,
}
Fields§
§total: i32
Total points awarded at this event.
alliance_points: i32
Points awarded for alliance selection
elim_points: i32
Points awarded for elimination match performance.
award_points: i32
Points awarded for event awards.
qual_points: i32
Points awarded for qualification match performance.
Implementations§
Trait Implementations§
Source§impl Clone for EventDistrictPointsPointsValue
impl Clone for EventDistrictPointsPointsValue
Source§fn clone(&self) -> EventDistrictPointsPointsValue
fn clone(&self) -> EventDistrictPointsPointsValue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for EventDistrictPointsPointsValue
impl Default for EventDistrictPointsPointsValue
Source§fn default() -> EventDistrictPointsPointsValue
fn default() -> EventDistrictPointsPointsValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventDistrictPointsPointsValue
impl<'de> Deserialize<'de> for EventDistrictPointsPointsValue
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 EventDistrictPointsPointsValue
impl PartialEq for EventDistrictPointsPointsValue
Source§fn eq(&self, other: &EventDistrictPointsPointsValue) -> bool
fn eq(&self, other: &EventDistrictPointsPointsValue) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EventDistrictPointsPointsValue
Auto Trait Implementations§
impl Freeze for EventDistrictPointsPointsValue
impl RefUnwindSafe for EventDistrictPointsPointsValue
impl Send for EventDistrictPointsPointsValue
impl Sync for EventDistrictPointsPointsValue
impl Unpin for EventDistrictPointsPointsValue
impl UnwindSafe for EventDistrictPointsPointsValue
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