Struct statime::OverlayClock
source · pub struct OverlayClock<C: Clock> { /* private fields */ }
Expand description
An overlay over other, read-only clock, frequency-locked to it. In other words, a virtual clock which can be tuned in software without affecting the underlying system or hardware clock.
Implementations§
source§impl<C: Clock> OverlayClock<C>
impl<C: Clock> OverlayClock<C>
sourcepub fn time_from_underlying(&self, roclock_time: Time) -> Time
pub fn time_from_underlying(&self, roclock_time: Time) -> Time
Converts (shifts and scales) Time
in underlying clock’s timescale to overlay clock timescale
sourcepub fn underlying(&self) -> &C
pub fn underlying(&self) -> &C
Returns reference to underlying clock
Trait Implementations§
source§impl<C: Clock> Clock for OverlayClock<C>
impl<C: Clock> Clock for OverlayClock<C>
source§fn set_frequency(&mut self, ppm: f64) -> Result<Time, Self::Error>
fn set_frequency(&mut self, ppm: f64) -> Result<Time, Self::Error>
Set the frequency of the clock, returning the time
at which the change was applied. The value is in ppm
difference from the clocks base frequency. Read more
source§fn step_clock(&mut self, offset: Duration) -> Result<Time, Self::Error>
fn step_clock(&mut self, offset: Duration) -> Result<Time, Self::Error>
Change the current time of the clock by offset. Returns
the time at which the change was applied. Read more
source§fn set_properties(
&mut self,
_time_properties_ds: &TimePropertiesDS,
) -> Result<(), Self::Error>
fn set_properties( &mut self, _time_properties_ds: &TimePropertiesDS, ) -> Result<(), Self::Error>
Adjust the timescale properties of the clock, including
things like the leap indicator, to the extend supported by the
system.
Auto Trait Implementations§
impl<C> Freeze for OverlayClock<C>where
C: Freeze,
impl<C> RefUnwindSafe for OverlayClock<C>where
C: RefUnwindSafe,
impl<C> Send for OverlayClock<C>where
C: Send,
impl<C> Sync for OverlayClock<C>where
C: Sync,
impl<C> Unpin for OverlayClock<C>where
C: Unpin,
impl<C> UnwindSafe for OverlayClock<C>where
C: UnwindSafe,
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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
source§impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
source§fn lossless_try_into(self) -> Option<Dst>
fn lossless_try_into(self) -> Option<Dst>
Performs the conversion.
source§impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
source§fn lossy_into(self) -> Dst
fn lossy_into(self) -> Dst
Performs the conversion.
source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.