pub struct EventRanking {
pub rankings: Vec<EventRankingRankingsInner>,
pub extra_stats_info: Option<Vec<EventRankingExtraStatsInfoInner>>,
pub sort_order_info: Vec<EventRankingSortOrderInfoInner>,
}
Fields§
§rankings: Vec<EventRankingRankingsInner>
List of rankings at the event.
extra_stats_info: Option<Vec<EventRankingExtraStatsInfoInner>>
List of special TBA-generated values provided in the extra_stats
array for each item.
sort_order_info: Vec<EventRankingSortOrderInfoInner>
List of year-specific values provided in the sort_orders
array for each team.
Implementations§
Source§impl EventRanking
impl EventRanking
pub fn new( rankings: Vec<EventRankingRankingsInner>, sort_order_info: Vec<EventRankingSortOrderInfoInner>, ) -> EventRanking
Trait Implementations§
Source§impl Clone for EventRanking
impl Clone for EventRanking
Source§fn clone(&self) -> EventRanking
fn clone(&self) -> EventRanking
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 Debug for EventRanking
impl Debug for EventRanking
Source§impl Default for EventRanking
impl Default for EventRanking
Source§fn default() -> EventRanking
fn default() -> EventRanking
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventRanking
impl<'de> Deserialize<'de> for EventRanking
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 EventRanking
impl PartialEq for EventRanking
Source§impl Serialize for EventRanking
impl Serialize for EventRanking
impl StructuralPartialEq for EventRanking
Auto Trait Implementations§
impl Freeze for EventRanking
impl RefUnwindSafe for EventRanking
impl Send for EventRanking
impl Sync for EventRanking
impl Unpin for EventRanking
impl UnwindSafe for EventRanking
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