pub enum EventClock {
Monotonic,
Realtime,
HTE,
}Expand description
Event clock settings.
Variants§
Monotonic
Line uses the monotonic clock for edge event timestamps.
Realtime
Line uses the realtime clock for edge event timestamps.
HTE
Line uses the hardware timestamp engine clock for edge event timestamps.
Trait Implementations§
Source§impl Clone for EventClock
impl Clone for EventClock
Source§fn clone(&self) -> EventClock
fn clone(&self) -> EventClock
Returns a copy 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 EventClock
impl Debug for EventClock
Source§impl PartialEq for EventClock
impl PartialEq for EventClock
impl Copy for EventClock
impl Eq for EventClock
impl StructuralPartialEq for EventClock
Auto Trait Implementations§
impl Freeze for EventClock
impl RefUnwindSafe for EventClock
impl Send for EventClock
impl Sync for EventClock
impl Unpin for EventClock
impl UnwindSafe for EventClock
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