pub struct EvolutionResult {
pub unit_id: u64,
pub change_count: u32,
pub created_at: u64,
pub last_modified: u64,
pub stability_score: f32,
pub trend: String,
}Expand description
Result of a temporal evolution query.
Fields§
§unit_id: u64The queried unit.
change_count: u32Number of changes.
created_at: u64Created-at timestamp.
last_modified: u64Last modified timestamp.
stability_score: f32Stability score.
trend: StringTrend description.
Trait Implementations§
Source§impl Clone for EvolutionResult
impl Clone for EvolutionResult
Source§fn clone(&self) -> EvolutionResult
fn clone(&self) -> EvolutionResult
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 moreAuto Trait Implementations§
impl Freeze for EvolutionResult
impl RefUnwindSafe for EvolutionResult
impl Send for EvolutionResult
impl Sync for EvolutionResult
impl Unpin for EvolutionResult
impl UnsafeUnpin for EvolutionResult
impl UnwindSafe for EvolutionResult
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