pub struct BidEvaluationEntry {
pub criterion_name: String,
pub raw_score: f64,
pub weight: f64,
pub weighted_score: f64,
}Expand description
An individual criterion score entry for a bid.
Fields§
§criterion_name: StringCriterion name
raw_score: f64Raw score (0-100)
weight: f64Weight from RFx criteria
weighted_score: f64Weighted score
Trait Implementations§
Source§impl Clone for BidEvaluationEntry
impl Clone for BidEvaluationEntry
Source§fn clone(&self) -> BidEvaluationEntry
fn clone(&self) -> BidEvaluationEntry
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 BidEvaluationEntry
impl Debug for BidEvaluationEntry
Source§impl<'de> Deserialize<'de> for BidEvaluationEntry
impl<'de> Deserialize<'de> for BidEvaluationEntry
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 BidEvaluationEntry
impl RefUnwindSafe for BidEvaluationEntry
impl Send for BidEvaluationEntry
impl Sync for BidEvaluationEntry
impl Unpin for BidEvaluationEntry
impl UnsafeUnpin for BidEvaluationEntry
impl UnwindSafe for BidEvaluationEntry
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