pub enum Stage {
GroupStage,
RoundOf32,
RoundOf16,
QuarterFinal,
SemiFinal,
ThirdPlace,
Final,
}Expand description
A stage of the tournament. The 2026 format is a 48-team group stage (12 groups of 4) followed by a 32-team knockout.
Variants§
GroupStage
Group stage (groups A–L).
RoundOf32
Round of 32 (first knockout round in the 2026 format).
RoundOf16
Round of 16.
QuarterFinal
Quarter-final.
SemiFinal
Semi-final.
ThirdPlace
Third-place play-off.
Final
Final.
Implementations§
Trait Implementations§
impl Copy for Stage
Source§impl<'de> Deserialize<'de> for Stage
impl<'de> Deserialize<'de> for Stage
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
impl Eq for Stage
impl StructuralPartialEq for Stage
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnsafeUnpin for Stage
impl UnwindSafe for Stage
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