[][src]Struct clocksource::Clocksource

pub struct Clocksource { /* fields omitted */ }

Methods

impl Clocksource[src]

pub fn new() -> Clocksource[src]

create a new clocksource

pub fn configured(reference: Clock, source: Clock) -> Clocksource[src]

allows manual configuration of the Clocksource and performs initial calibration

pub fn frequency(&self) -> f64[src]

get the approximate frequency of the source clock in Hz

pub fn counter(&self) -> u64[src]

get the raw counter reading of the source clock

pub fn reference(&self) -> u64[src]

get nanoseconds from the reference clock

pub fn time(&self) -> u64[src]

get the nanoseconds from the source clock

pub fn calibrate(&mut self)[src]

calibrate the source frequency against the reference

pub fn recalibrate(&mut self)[src]

recalculate the frequency, without changing the reference time

pub fn phase_error(&self) -> f64[src]

estimate of the phase error between the source and reference clocksource

pub fn convert(&self, src_t1: u64) -> f64[src]

converts a raw reading to approximation of reference in nanoseconds

Trait Implementations

impl Default for Clocksource[src]

impl Clone for Clocksource[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]