pub struct DecayPoint {
pub date: String,
pub score: f64,
pub event: Option<String>,
}Expand description
A single point on the decay curve.
Fields§
§date: String§score: f64§event: Option<String>Trait Implementations§
Source§impl Clone for DecayPoint
impl Clone for DecayPoint
Source§fn clone(&self) -> DecayPoint
fn clone(&self) -> DecayPoint
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 DecayPoint
impl RefUnwindSafe for DecayPoint
impl Send for DecayPoint
impl Sync for DecayPoint
impl Unpin for DecayPoint
impl UnsafeUnpin for DecayPoint
impl UnwindSafe for DecayPoint
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