pub struct Round {
pub settings: RoundSettings,
pub players: Vec<RoundPlayer>,
pub result: RoundResult,
}Expand description
Round information.
Fields§
§settings: RoundSettings§players: Vec<RoundPlayer>§result: RoundResultTrait Implementations§
impl StructuralPartialEq for Round
Auto Trait Implementations§
impl Freeze for Round
impl RefUnwindSafe for Round
impl Send for Round
impl Sync for Round
impl Unpin for Round
impl UnwindSafe for Round
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