pub struct SyncStatus {
pub is_synchronized: bool,
pub ltc_available: bool,
pub vitc_available: bool,
pub jam_sync_active: bool,
pub drift_ppm: f32,
}Expand description
Synchronization status
Fields§
§is_synchronized: boolIs timecode synchronized
ltc_available: boolIs LTC available
vitc_available: boolIs VITC available
jam_sync_active: boolIs jam sync active
drift_ppm: f32Clock drift in PPM
Trait Implementations§
Source§impl Clone for SyncStatus
impl Clone for SyncStatus
Source§fn clone(&self) -> SyncStatus
fn clone(&self) -> SyncStatus
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 moreAuto Trait Implementations§
impl Freeze for SyncStatus
impl RefUnwindSafe for SyncStatus
impl Send for SyncStatus
impl Sync for SyncStatus
impl Unpin for SyncStatus
impl UnsafeUnpin for SyncStatus
impl UnwindSafe for SyncStatus
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