pub enum LatencyUnit {
Seconds,
Millis,
Micros,
Nanos,
}Expand description
The latency unit used to report latencies by various parts of the Rama codebase.
Variants§
Trait Implementations§
Source§impl Clone for LatencyUnit
impl Clone for LatencyUnit
Source§fn clone(&self) -> LatencyUnit
fn clone(&self) -> LatencyUnit
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 LatencyUnit
impl Debug for LatencyUnit
impl Copy for LatencyUnit
Auto Trait Implementations§
impl Freeze for LatencyUnit
impl RefUnwindSafe for LatencyUnit
impl Send for LatencyUnit
impl Sync for LatencyUnit
impl Unpin for LatencyUnit
impl UnwindSafe for LatencyUnit
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