pub enum DeviceTimingMeasurement<T> {
NotRequested,
Measured(T),
Unavailable(DeviceTimingUnavailableReason),
}Variants§
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for DeviceTimingMeasurement<T>
impl<T: Clone> Clone for DeviceTimingMeasurement<T>
Source§fn clone(&self) -> DeviceTimingMeasurement<T>
fn clone(&self) -> DeviceTimingMeasurement<T>
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 moreimpl<T: Copy> Copy for DeviceTimingMeasurement<T>
Source§impl<T: Debug> Debug for DeviceTimingMeasurement<T>
impl<T: Debug> Debug for DeviceTimingMeasurement<T>
Source§impl<'de, T> Deserialize<'de> for DeviceTimingMeasurement<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for DeviceTimingMeasurement<T>where
T: Deserialize<'de>,
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
impl<T: Eq> Eq for DeviceTimingMeasurement<T>
Source§impl<T: PartialEq> PartialEq for DeviceTimingMeasurement<T>
impl<T: PartialEq> PartialEq for DeviceTimingMeasurement<T>
Source§impl<T> Serialize for DeviceTimingMeasurement<T>where
T: Serialize,
impl<T> Serialize for DeviceTimingMeasurement<T>where
T: Serialize,
impl<T: PartialEq> StructuralPartialEq for DeviceTimingMeasurement<T>
Auto Trait Implementations§
impl<T> Freeze for DeviceTimingMeasurement<T>where
T: Freeze,
impl<T> RefUnwindSafe for DeviceTimingMeasurement<T>where
T: RefUnwindSafe,
impl<T> Send for DeviceTimingMeasurement<T>where
T: Send,
impl<T> Sync for DeviceTimingMeasurement<T>where
T: Sync,
impl<T> Unpin for DeviceTimingMeasurement<T>where
T: Unpin,
impl<T> UnsafeUnpin for DeviceTimingMeasurement<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for DeviceTimingMeasurement<T>where
T: UnwindSafe,
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