#[repr(u32)]pub enum WiredSyncMode {
Standalone = 0,
Master = 1,
Subordinate = 2,
}Expand description
Synchronization mode when connecting two or more devices together.
Variants§
Standalone = 0
< Neither ‘Sync In’ or ‘Sync Out’ connections are used.
Master = 1
< The ‘Sync Out’ jack is enabled and synchronization data it driven out the connected wire.
Subordinate = 2
< The ‘Sync In’ jack is used for synchronization and ‘Sync Out’ is driven for the next device in the chain.
Trait Implementations§
Source§impl Clone for WiredSyncMode
impl Clone for WiredSyncMode
Source§fn clone(&self) -> WiredSyncMode
fn clone(&self) -> WiredSyncMode
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 WiredSyncMode
impl Debug for WiredSyncMode
Source§impl From<WiredSyncMode> for k4a_wired_sync_mode_t
impl From<WiredSyncMode> for k4a_wired_sync_mode_t
Source§fn from(s: WiredSyncMode) -> Self
fn from(s: WiredSyncMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WiredSyncMode
impl PartialEq for WiredSyncMode
impl Copy for WiredSyncMode
impl StructuralPartialEq for WiredSyncMode
Auto Trait Implementations§
impl Freeze for WiredSyncMode
impl RefUnwindSafe for WiredSyncMode
impl Send for WiredSyncMode
impl Sync for WiredSyncMode
impl Unpin for WiredSyncMode
impl UnwindSafe for WiredSyncMode
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