pub struct BracketRound {
pub stage: Stage,
pub matches: Vec<Match>,
}Expand description
One round of the knockout bracket.
Fields§
§stage: StageThe stage this round represents.
matches: Vec<Match>Matches in this round, in bracket order.
Trait Implementations§
Source§impl Clone for BracketRound
impl Clone for BracketRound
Source§fn clone(&self) -> BracketRound
fn clone(&self) -> BracketRound
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BracketRound
impl Debug for BracketRound
Source§impl<'de> Deserialize<'de> for BracketRound
impl<'de> Deserialize<'de> for BracketRound
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 BracketRound
Source§impl PartialEq for BracketRound
impl PartialEq for BracketRound
Source§fn eq(&self, other: &BracketRound) -> bool
fn eq(&self, other: &BracketRound) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BracketRound
impl Serialize for BracketRound
impl StructuralPartialEq for BracketRound
Auto Trait Implementations§
impl Freeze for BracketRound
impl RefUnwindSafe for BracketRound
impl Send for BracketRound
impl Sync for BracketRound
impl Unpin for BracketRound
impl UnsafeUnpin for BracketRound
impl UnwindSafe for BracketRound
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