pub struct DecayReport {
pub points: Vec<DecayPoint>,
pub turning_point: Option<DecayPoint>,
pub worst_contributor: Option<String>,
pub current_health: &'static str,
}Expand description
Full decay analysis result.
Fields§
§points: Vec<DecayPoint>§turning_point: Option<DecayPoint>§worst_contributor: Option<String>§current_health: &'static strTrait Implementations§
Source§impl Clone for DecayReport
impl Clone for DecayReport
Source§fn clone(&self) -> DecayReport
fn clone(&self) -> DecayReport
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 moreAuto Trait Implementations§
impl Freeze for DecayReport
impl RefUnwindSafe for DecayReport
impl Send for DecayReport
impl Sync for DecayReport
impl Unpin for DecayReport
impl UnsafeUnpin for DecayReport
impl UnwindSafe for DecayReport
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