pub struct ProfileTime {
pub start: Option<f64>,
}
Expand description
Contains the start time of a profile.
Fields§
§start: Option<f64>
The start time of a profile. It is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
Trait Implementations§
Source§impl Clone for ProfileTime
impl Clone for ProfileTime
Source§fn clone(&self) -> ProfileTime
fn clone(&self) -> ProfileTime
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 ProfileTime
impl Debug for ProfileTime
Source§impl Default for ProfileTime
impl Default for ProfileTime
Source§fn default() -> ProfileTime
fn default() -> ProfileTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfileTime
impl<'de> Deserialize<'de> for ProfileTime
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
Source§impl PartialEq for ProfileTime
impl PartialEq for ProfileTime
impl StructuralPartialEq for ProfileTime
Auto Trait Implementations§
impl Freeze for ProfileTime
impl RefUnwindSafe for ProfileTime
impl Send for ProfileTime
impl Sync for ProfileTime
impl Unpin for ProfileTime
impl UnwindSafe for ProfileTime
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