pub struct CrystalStats {
pub tile_count: usize,
pub total_bytes: u64,
pub avg_valence: f64,
pub max_valence: f64,
pub min_valence: f64,
pub oldest: Option<DateTime<Utc>>,
pub newest: Option<DateTime<Utc>>,
}Expand description
Statistics about a crystal.
Fields§
§tile_count: usize§total_bytes: u64§avg_valence: f64§max_valence: f64§min_valence: f64§oldest: Option<DateTime<Utc>>§newest: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for CrystalStats
impl Clone for CrystalStats
Source§fn clone(&self) -> CrystalStats
fn clone(&self) -> CrystalStats
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 CrystalStats
impl RefUnwindSafe for CrystalStats
impl Send for CrystalStats
impl Sync for CrystalStats
impl Unpin for CrystalStats
impl UnsafeUnpin for CrystalStats
impl UnwindSafe for CrystalStats
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