Enum glean_core::metrics::TimeUnit
source · #[repr(i32)]pub enum TimeUnit {
Nanosecond = 0,
Microsecond = 1,
Millisecond = 2,
Second = 3,
Minute = 4,
Hour = 5,
Day = 6,
}
Expand description
Different resolutions supported by the time related metric types (e.g. DatetimeMetric).
Variants§
Nanosecond = 0
Truncate to nanosecond precision.
Microsecond = 1
Truncate to microsecond precision.
Millisecond = 2
Truncate to millisecond precision.
Second = 3
Truncate to second precision.
Minute = 4
Truncate to minute precision.
Hour = 5
Truncate to hour precision.
Day = 6
Truncate to day precision.
Implementations§
source§impl TimeUnit
impl TimeUnit
sourcepub fn format_pattern(self) -> &'static str
pub fn format_pattern(self) -> &'static str
Formats the given time unit, truncating the time if needed.
sourcepub fn duration_convert(self, duration: Duration) -> u64
pub fn duration_convert(self, duration: Duration) -> u64
Trait Implementations§
source§impl<'de> Deserialize<'de> for TimeUnit
impl<'de> Deserialize<'de> for TimeUnit
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 TimeUnit
impl PartialEq for TimeUnit
source§impl TryFrom<i32> for TimeUnit
impl TryFrom<i32> for TimeUnit
Trait implementation for converting an integer value to a TimeUnit.
This is used in the FFI code.
Please note that values should match the ordering of the platform specific side of things (e.g. Kotlin implementation).
impl Copy for TimeUnit
impl Eq for TimeUnit
impl StructuralEq for TimeUnit
impl StructuralPartialEq for TimeUnit
Auto Trait Implementations§
impl RefUnwindSafe for TimeUnit
impl Send for TimeUnit
impl Sync for TimeUnit
impl Unpin for TimeUnit
impl UnwindSafe for TimeUnit
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
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Read moresource§impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
impl<V> ObjectSerialize for Vwhere
V: Serialize + for<'de> Deserialize<'de>,
source§fn from_str(obj: &str) -> Result<V, ObjectError>
fn from_str(obj: &str) -> Result<V, ObjectError>
Deserialize the object from its JSON representation. Read more
source§fn into_serialized_object(self) -> Result<Value, ObjectError>
fn into_serialized_object(self) -> Result<Value, ObjectError>
Serialize this object into a JSON string.