pub struct QuoteScore {
pub quote_id: Uuid,
pub total_score: f32,
pub price_score: f32,
pub delay_score: f32,
pub warranty_score: f32,
pub reputation_score: f32,
}Expand description
Automatic scoring result (Belgian best practices) Scoring algorithm: price (40%), delay (30%), warranty (20%), reputation (10%)
Fields§
§quote_id: Uuid§total_score: f32§price_score: f32§delay_score: f32§warranty_score: f32§reputation_score: f32Trait Implementations§
Source§impl Clone for QuoteScore
impl Clone for QuoteScore
Source§fn clone(&self) -> QuoteScore
fn clone(&self) -> QuoteScore
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 QuoteScore
impl Debug for QuoteScore
Source§impl<'de> Deserialize<'de> for QuoteScore
impl<'de> Deserialize<'de> for QuoteScore
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 From<QuoteScore> for QuoteScoreResponseDto
impl From<QuoteScore> for QuoteScoreResponseDto
Source§fn from(score: QuoteScore) -> Self
fn from(score: QuoteScore) -> Self
Converts to this type from the input type.
Source§impl PartialEq for QuoteScore
impl PartialEq for QuoteScore
Source§impl Serialize for QuoteScore
impl Serialize for QuoteScore
impl StructuralPartialEq for QuoteScore
Auto Trait Implementations§
impl Freeze for QuoteScore
impl RefUnwindSafe for QuoteScore
impl Send for QuoteScore
impl Sync for QuoteScore
impl Unpin for QuoteScore
impl UnwindSafe for QuoteScore
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Fake for T
impl<T> Fake for T
§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 moreCreates a shared type from an unshared type.