#[repr(C)]pub struct heif_tai_clock_info {
pub version: u8,
pub time_uncertainty: u64,
pub clock_resolution: u32,
pub clock_drift_rate: i32,
pub clock_type: u8,
}Fields§
§version: u8§time_uncertainty: u64Standard deviation for timestamp generation process.
May be heif_tai_clock_info_time_uncertainty_unknown if unknown.
clock_resolution: u32Receptor clock resolution in nanoseconds.
clock_drift_rate: i32Clock drift rate in picoseconds/second when synchronization is stopped.
Maybe heif_tai_clock_info_clock_drift_rate_unknown if unknown.
clock_type: u8Whether clock is synchronized to an atomic source, see the clock_type defines below.
Trait Implementations§
Source§impl Clone for heif_tai_clock_info
impl Clone for heif_tai_clock_info
Source§fn clone(&self) -> heif_tai_clock_info
fn clone(&self) -> heif_tai_clock_info
Returns a duplicate 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 heif_tai_clock_info
impl Debug for heif_tai_clock_info
impl Copy for heif_tai_clock_info
Auto Trait Implementations§
impl Freeze for heif_tai_clock_info
impl RefUnwindSafe for heif_tai_clock_info
impl Send for heif_tai_clock_info
impl Sync for heif_tai_clock_info
impl Unpin for heif_tai_clock_info
impl UnwindSafe for heif_tai_clock_info
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