pub struct Scoreboard { /* private fields */ }Expand description
Represents the scoreboard.
Tracks each player’s position and the history of score sheets.
Implementations§
Source§impl Scoreboard
impl Scoreboard
Sourcepub fn position(&self, player: Player) -> Position
pub fn position(&self, player: Player) -> Position
Returns the position of the specified player.
Sourcepub fn peg(&mut self, pegging: &Pegging) -> Option<Player>
pub fn peg(&mut self, pegging: &Pegging) -> Option<Player>
Updates the scoreboard with the given pegging.
If the player reached the winning score then they will be returned as Some(winner) otherwise None is returned.
Sourcepub fn latest_pegging(&self) -> Option<&Pegging>
pub fn latest_pegging(&self) -> Option<&Pegging>
Returns a reference to the most recent pegging from the history if any pegging rounds have been completed.
Returns None if no pegging has occurred yet.
Trait Implementations§
Source§impl Clone for Scoreboard
impl Clone for Scoreboard
Source§fn clone(&self) -> Scoreboard
fn clone(&self) -> Scoreboard
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 Scoreboard
impl Debug for Scoreboard
Source§impl Default for Scoreboard
impl Default for Scoreboard
Source§fn default() -> Scoreboard
fn default() -> Scoreboard
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Scoreboard
impl<'de> Deserialize<'de> for Scoreboard
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
Source§impl Display for Scoreboard
impl Display for Scoreboard
Source§impl PartialEq for Scoreboard
impl PartialEq for Scoreboard
Source§impl Serialize for Scoreboard
impl Serialize for Scoreboard
impl Eq for Scoreboard
impl StructuralPartialEq for Scoreboard
Auto Trait Implementations§
impl Freeze for Scoreboard
impl RefUnwindSafe for Scoreboard
impl Send for Scoreboard
impl Sync for Scoreboard
impl Unpin for Scoreboard
impl UnwindSafe for Scoreboard
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more