pub struct AutonomyRatio {
pub closed_missions: u64,
pub total_interventions: u64,
pub interventions_per_closed_mission: f64,
pub zero_intervention_missions: u64,
pub zero_intervention_share: f64,
}Fields§
§closed_missions: u64§total_interventions: u64§interventions_per_closed_mission: f64§zero_intervention_missions: u64Trait Implementations§
Source§impl Clone for AutonomyRatio
impl Clone for AutonomyRatio
Source§fn clone(&self) -> AutonomyRatio
fn clone(&self) -> AutonomyRatio
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 AutonomyRatio
impl Debug for AutonomyRatio
Source§impl<'de> Deserialize<'de> for AutonomyRatio
impl<'de> Deserialize<'de> for AutonomyRatio
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 AutonomyRatio
impl PartialEq for AutonomyRatio
Source§impl Serialize for AutonomyRatio
impl Serialize for AutonomyRatio
impl StructuralPartialEq for AutonomyRatio
Auto Trait Implementations§
impl Freeze for AutonomyRatio
impl RefUnwindSafe for AutonomyRatio
impl Send for AutonomyRatio
impl Sync for AutonomyRatio
impl Unpin for AutonomyRatio
impl UnsafeUnpin for AutonomyRatio
impl UnwindSafe for AutonomyRatio
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