pub struct CycleTrackerEntry {
pub timestamp_secs: u64,
pub cycles: Cycles,
}Expand description
CycleTrackerEntry
Fields§
§timestamp_secs: u64§cycles: CyclesTrait Implementations§
Source§impl CandidType for CycleTrackerEntry
impl CandidType for CycleTrackerEntry
Source§impl Clone for CycleTrackerEntry
impl Clone for CycleTrackerEntry
Source§fn clone(&self) -> CycleTrackerEntry
fn clone(&self) -> CycleTrackerEntry
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 CycleTrackerEntry
impl Debug for CycleTrackerEntry
Source§impl<'de> Deserialize<'de> for CycleTrackerEntry
impl<'de> Deserialize<'de> for CycleTrackerEntry
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 CycleTrackerEntry
impl RefUnwindSafe for CycleTrackerEntry
impl Send for CycleTrackerEntry
impl Sync for CycleTrackerEntry
impl Unpin for CycleTrackerEntry
impl UnwindSafe for CycleTrackerEntry
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