pub enum OutputModel {
UsbFrameSwap,
NetworkFifo,
UdpTimed,
}Expand description
The scheduler-relevant output model for a DAC.
Variants§
UsbFrameSwap
Frame swap / limited queue depth (e.g., Helios-style double-buffering).
NetworkFifo
FIFO-ish buffer where “top up” is natural (e.g., Ether Dream-style).
UdpTimed
Timed UDP chunks where OS send may not reflect hardware pacing.
Trait Implementations§
Source§impl Clone for OutputModel
impl Clone for OutputModel
Source§fn clone(&self) -> OutputModel
fn clone(&self) -> OutputModel
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 OutputModel
impl Debug for OutputModel
Source§impl PartialEq for OutputModel
impl PartialEq for OutputModel
impl Eq for OutputModel
impl StructuralPartialEq for OutputModel
Auto Trait Implementations§
impl Freeze for OutputModel
impl RefUnwindSafe for OutputModel
impl Send for OutputModel
impl Sync for OutputModel
impl Unpin for OutputModel
impl UnwindSafe for OutputModel
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