pub struct Bracket {
pub rounds: Vec<BracketRound>,
}Expand description
The knockout bracket as an ordered list of rounds.
Fields§
§rounds: Vec<BracketRound>Rounds from Stage::RoundOf32 through Stage::Final.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bracket
impl<'de> Deserialize<'de> for Bracket
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 Bracket
impl StructuralPartialEq for Bracket
Auto Trait Implementations§
impl Freeze for Bracket
impl RefUnwindSafe for Bracket
impl Send for Bracket
impl Sync for Bracket
impl Unpin for Bracket
impl UnsafeUnpin for Bracket
impl UnwindSafe for Bracket
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