Struct zx::ClockTransformation
source · pub struct ClockTransformation<Reference = MonotonicTimeline, Output = SyntheticTimeline> {
pub reference_offset: Instant<Reference>,
pub synthetic_offset: Instant<Output>,
pub rate: zx_clock_rate_t,
}
Expand description
A one-dimensional affine transformation that maps points from the reference timeline to the clock timeline. See clock transformations.
Fields§
§reference_offset: Instant<Reference>
The offset on the reference timeline, measured in reference clock ticks.
synthetic_offset: Instant<Output>
The offset on the clock timeline, measured in clock ticks (typically normalized to nanoseconds).
rate: zx_clock_rate_t
The ratio of the reference to clock rate.
Implementations§
source§impl<Reference: Timeline + Copy, Output: Timeline + Copy> ClockTransformation<Reference, Output>
impl<Reference: Timeline + Copy, Output: Timeline + Copy> ClockTransformation<Reference, Output>
Clock transformations can be applied to convert a time from a reference time to a synthetic time. The inverse transformation can be applied to convert a synthetic time back to the reference time.
Trait Implementations§
source§impl<Reference: Clone, Output: Clone> Clone for ClockTransformation<Reference, Output>
impl<Reference: Clone, Output: Clone> Clone for ClockTransformation<Reference, Output>
source§fn clone(&self) -> ClockTransformation<Reference, Output>
fn clone(&self) -> ClockTransformation<Reference, Output>
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<Reference: Timeline, Output: Timeline> From<zx_clock_transformation_t> for ClockTransformation<Reference, Output>
impl<Reference: Timeline, Output: Timeline> From<zx_clock_transformation_t> for ClockTransformation<Reference, Output>
source§fn from(ct: zx_clock_transformation_t) -> Self
fn from(ct: zx_clock_transformation_t) -> Self
Converts to this type from the input type.
source§impl<Reference: PartialEq, Output: PartialEq> PartialEq for ClockTransformation<Reference, Output>
impl<Reference: PartialEq, Output: PartialEq> PartialEq for ClockTransformation<Reference, Output>
source§fn eq(&self, other: &ClockTransformation<Reference, Output>) -> bool
fn eq(&self, other: &ClockTransformation<Reference, Output>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<Reference: Eq, Output: Eq> Eq for ClockTransformation<Reference, Output>
impl<Reference, Output> StructuralPartialEq for ClockTransformation<Reference, Output>
Auto Trait Implementations§
impl<Reference, Output> Freeze for ClockTransformation<Reference, Output>
impl<Reference, Output> RefUnwindSafe for ClockTransformation<Reference, Output>where
Reference: RefUnwindSafe,
Output: RefUnwindSafe,
impl<Reference, Output> Send for ClockTransformation<Reference, Output>
impl<Reference, Output> Sync for ClockTransformation<Reference, Output>
impl<Reference, Output> Unpin for ClockTransformation<Reference, Output>
impl<Reference, Output> UnwindSafe for ClockTransformation<Reference, Output>where
Reference: UnwindSafe,
Output: 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)