pub enum IsochronousSynchronizationType {
NoSynchronization,
Asynchronous,
Adaptive,
Synchronous,
}
Expand description
Isochronous transfers employ one of three synchronization schemes. See USB 2.0 spec 5.12.4.1.
Variants§
NoSynchronization
Synchronization is not implemented for this endpoint.
Asynchronous
Source and Sink sample clocks are free running.
Adaptive
Source sample clock is locked to Sink, Sink sample clock is locked to data flow.
Synchronous
Source and Sink sample clocks are locked to USB SOF.
Trait Implementations§
Source§impl Clone for IsochronousSynchronizationType
impl Clone for IsochronousSynchronizationType
Source§fn clone(&self) -> IsochronousSynchronizationType
fn clone(&self) -> IsochronousSynchronizationType
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 PartialEq for IsochronousSynchronizationType
impl PartialEq for IsochronousSynchronizationType
Source§fn eq(&self, other: &IsochronousSynchronizationType) -> bool
fn eq(&self, other: &IsochronousSynchronizationType) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for IsochronousSynchronizationType
impl Eq for IsochronousSynchronizationType
impl StructuralPartialEq for IsochronousSynchronizationType
Auto Trait Implementations§
impl Freeze for IsochronousSynchronizationType
impl RefUnwindSafe for IsochronousSynchronizationType
impl Send for IsochronousSynchronizationType
impl Sync for IsochronousSynchronizationType
impl Unpin for IsochronousSynchronizationType
impl UnwindSafe for IsochronousSynchronizationType
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