pub struct Competition {Show 27 fields
pub id: i64,
pub liveId: String,
pub creator: String,
pub name: String,
pub participantType: String,
pub description: Option<String>,
pub registrationStart: Option<i64>,
pub registrationEnd: Option<i64>,
pub startDate: i64,
pub endDate: i64,
pub matchesGenerationDate: i64,
pub nbPlayers: i64,
pub spotStructure: String,
pub leaderboardId: i64,
pub manialink: Option<String>,
pub rulesUrl: Option<String>,
pub streamUrl: Option<String>,
pub websiteUrl: Option<String>,
pub logoUrl: Option<String>,
pub verticalUrl: Option<String>,
pub allowedZones: Vec<Value>,
pub deletedOn: Option<i64>,
pub autoNormalizeSeeds: bool,
pub region: String,
pub autoGetParticipantSkillLevel: String,
pub matchAutoMode: String,
pub partition: String,
}Fields§
§id: i64§liveId: String§creator: String§name: String§participantType: String§description: Option<String>§registrationStart: Option<i64>§registrationEnd: Option<i64>§startDate: i64§endDate: i64§matchesGenerationDate: i64§nbPlayers: i64§spotStructure: String§leaderboardId: i64§manialink: Option<String>§rulesUrl: Option<String>§streamUrl: Option<String>§websiteUrl: Option<String>§logoUrl: Option<String>§verticalUrl: Option<String>§allowedZones: Vec<Value>§deletedOn: Option<i64>§autoNormalizeSeeds: bool§region: String§autoGetParticipantSkillLevel: String§matchAutoMode: String§partition: StringTrait Implementations§
Source§impl Clone for Competition
impl Clone for Competition
Source§fn clone(&self) -> Competition
fn clone(&self) -> Competition
Returns a duplicate 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 Competition
impl Debug for Competition
Source§impl<'de> Deserialize<'de> for Competition
impl<'de> Deserialize<'de> for Competition
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
Auto Trait Implementations§
impl Freeze for Competition
impl RefUnwindSafe for Competition
impl Send for Competition
impl Sync for Competition
impl Unpin for Competition
impl UnwindSafe for Competition
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