pub struct FleetScore {
pub value: f64,
pub max: Option<f64>,
pub notes: Option<String>,
}Fields§
§value: f64§max: Option<f64>§notes: Option<String>Trait Implementations§
Source§impl Clone for FleetScore
impl Clone for FleetScore
Source§fn clone(&self) -> FleetScore
fn clone(&self) -> FleetScore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FleetScore
impl Debug for FleetScore
Source§impl<'de> Deserialize<'de> for FleetScore
impl<'de> Deserialize<'de> for FleetScore
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 PartialEq for FleetScore
impl PartialEq for FleetScore
Source§fn eq(&self, other: &FleetScore) -> bool
fn eq(&self, other: &FleetScore) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetScore
impl Serialize for FleetScore
impl StructuralPartialEq for FleetScore
Auto Trait Implementations§
impl Freeze for FleetScore
impl RefUnwindSafe for FleetScore
impl Send for FleetScore
impl Sync for FleetScore
impl Unpin for FleetScore
impl UnsafeUnpin for FleetScore
impl UnwindSafe for FleetScore
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