pub struct CodeAgeDistributionReport {
pub buckets: Vec<CodeAgeBucket>,
pub recent_refreshes: usize,
pub prior_refreshes: usize,
pub refresh_trend: TrendClass,
}Fields§
§buckets: Vec<CodeAgeBucket>§recent_refreshes: usize§prior_refreshes: usize§refresh_trend: TrendClassTrait Implementations§
Source§impl Clone for CodeAgeDistributionReport
impl Clone for CodeAgeDistributionReport
Source§fn clone(&self) -> CodeAgeDistributionReport
fn clone(&self) -> CodeAgeDistributionReport
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 moreSource§impl Debug for CodeAgeDistributionReport
impl Debug for CodeAgeDistributionReport
Source§impl<'de> Deserialize<'de> for CodeAgeDistributionReport
impl<'de> Deserialize<'de> for CodeAgeDistributionReport
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
Auto Trait Implementations§
impl Freeze for CodeAgeDistributionReport
impl RefUnwindSafe for CodeAgeDistributionReport
impl Send for CodeAgeDistributionReport
impl Sync for CodeAgeDistributionReport
impl Unpin for CodeAgeDistributionReport
impl UnsafeUnpin for CodeAgeDistributionReport
impl UnwindSafe for CodeAgeDistributionReport
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