Skip to main content

Clock

Struct Clock 

Source
pub struct Clock { /* private fields */ }
Expand description

Monotonic clock anchored to an observer-startup baseline.

Mirrors the semantics of Observer::start.elapsed().as_nanos() so downstream stall arithmetic is unchanged when the operator does not pass --clock-source.

Implementations§

Source§

impl Clock

Source

pub fn new(source: ClockSource) -> Result<Self, ClockError>

Build a Clock backed by source.

Performs one clock_gettime(2) call to anchor start_ns. Returns ClockError::Unsupported when source = Boottime on a non-Linux target.

Source

pub fn probe(source: ClockSource) -> Result<(), ClockError>

One-call probe: surface Unsupported / OS errors at startup before threading the clock through Observer.

Source

pub fn now_ns(&self) -> u64

Nanoseconds since this Clock’s baseline. Saturates to u64::MAX on a wildly long-running process (>584 years).

Source

pub fn source(&self) -> ClockSource

Inspect the configured source (used by tests and by main.rs to publish into the watchdog atomic).

Auto Trait Implementations§

§

impl Freeze for Clock

§

impl RefUnwindSafe for Clock

§

impl Send for Clock

§

impl Sync for Clock

§

impl Unpin for Clock

§

impl UnsafeUnpin for Clock

§

impl UnwindSafe for Clock

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.