pub struct Score {
pub key_type: ScoreKey,
pub key_value: String,
pub points: f64,
}Expand description
Represents a Score
Fields§
§key_type: ScoreKeyAn enum value that identifies the type of key used to identify the Score object
key_value: StringThe key used to identify the Score object
points: f64The points the key has received as a score of relavence
Implementations§
Source§impl Score
impl Score
Sourcepub fn new(ktype: ScoreKey, kvalue: String, pnts: f64) -> Score
pub fn new(ktype: ScoreKey, kvalue: String, pnts: f64) -> Score
Constructs a Score object
§Arguments
- ktype: ScoreKey- The
ScoreKeyenum value that identifies the type of score key, (e.g.: ScoreKey::KeyWord). - kvalue: String - A key that identifies the score, (e.g.: “dob”).
- pnts: f64 - The scored points that the key has received
#Example
use pbd::dpi::{Score, ScoreKey};
let score = Score::new(ScoreKey::KeyWord,"dob".to_string(),25.0);Trait Implementations§
Source§impl<'de> Deserialize<'de> for Score
impl<'de> Deserialize<'de> for Score
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
Auto Trait Implementations§
impl Freeze for Score
impl RefUnwindSafe for Score
impl Send for Score
impl Sync for Score
impl Unpin for Score
impl UnwindSafe for Score
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,
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