pub struct SystemClockDescriptor {
pub external_clock_reference: bool,
pub clock_accuracy_integer: u8,
pub clock_accuracy_exponent: u8,
}Expand description
system_clock_descriptor body (§2.6.20 Table 2-54).
clock_accuracy_integer × 10^(-clock_accuracy_exponent) gives the
fractional frequency accuracy of the program clock in parts per
million (§2.6.21). When clock_accuracy_integer == 0 the spec
defines the accuracy as 30 ppm.
Fields§
§external_clock_reference: boolexternal_clock_reference_indicator — when true, the clock
is derived from an external frequency reference at the decoder.
clock_accuracy_integer: u86-bit clock_accuracy_integer.
clock_accuracy_exponent: u83-bit clock_accuracy_exponent.
Trait Implementations§
Source§impl Clone for SystemClockDescriptor
impl Clone for SystemClockDescriptor
Source§fn clone(&self) -> SystemClockDescriptor
fn clone(&self) -> SystemClockDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SystemClockDescriptor
Source§impl Debug for SystemClockDescriptor
impl Debug for SystemClockDescriptor
impl Eq for SystemClockDescriptor
Source§impl PartialEq for SystemClockDescriptor
impl PartialEq for SystemClockDescriptor
Source§fn eq(&self, other: &SystemClockDescriptor) -> bool
fn eq(&self, other: &SystemClockDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SystemClockDescriptor
Auto Trait Implementations§
impl Freeze for SystemClockDescriptor
impl RefUnwindSafe for SystemClockDescriptor
impl Send for SystemClockDescriptor
impl Sync for SystemClockDescriptor
impl Unpin for SystemClockDescriptor
impl UnsafeUnpin for SystemClockDescriptor
impl UnwindSafe for SystemClockDescriptor
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