pub struct Trend {
pub sum_per_day: Vec<u64>,
pub value: i32,
pub ref_count: u64,
pub tail_count: u64,
}Fields§
§sum_per_day: Vec<u64>§value: i32§ref_count: u64§tail_count: u64Implementations§
Trait Implementations§
Source§impl Ord for Trend
impl Ord for Trend
Source§impl PartialOrd for Trend
impl PartialOrd for Trend
impl Eq for Trend
Auto Trait Implementations§
impl Freeze for Trend
impl RefUnwindSafe for Trend
impl Send for Trend
impl Sync for Trend
impl Unpin for Trend
impl UnwindSafe for Trend
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more